Interface CommentQuery
-
- All Superinterfaces:
org.flowable.common.engine.api.query.Query<CommentQuery,Comment>
- All Known Implementing Classes:
CommentQueryImpl
public interface CommentQuery extends org.flowable.common.engine.api.query.Query<CommentQuery,Comment>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CommentQuerycontent(java.lang.String content)CommentQuerycontentLike(java.lang.String contentLike)CommentQuerycreated(java.util.Date created)CommentQuerycreatedAfter(java.util.Date createdAfter)CommentQuerycreatedBefore(java.util.Date createdBefore)CommentQueryid(java.lang.String id)CommentQueryorderByCreatedTime()CommentQueryorderByUpdatedTime()CommentQueryscopeId(java.lang.String scopeId)CommentQueryscopeType(java.lang.String scopeType)CommentQueryupdated(java.util.Date updated)CommentQueryupdatedAfter(java.util.Date updatedAfter)CommentQueryupdatedBefore(java.util.Date updatedBefore)CommentQueryuserId(java.lang.String userId)
-
-
-
Method Detail
-
id
CommentQuery id(java.lang.String id)
-
scopeId
CommentQuery scopeId(java.lang.String scopeId)
-
scopeType
CommentQuery scopeType(java.lang.String scopeType)
-
userId
CommentQuery userId(java.lang.String userId)
-
content
CommentQuery content(java.lang.String content)
-
created
CommentQuery created(java.util.Date created)
-
updated
CommentQuery updated(java.util.Date updated)
-
createdBefore
CommentQuery createdBefore(java.util.Date createdBefore)
-
updatedBefore
CommentQuery updatedBefore(java.util.Date updatedBefore)
-
createdAfter
CommentQuery createdAfter(java.util.Date createdAfter)
-
updatedAfter
CommentQuery updatedAfter(java.util.Date updatedAfter)
-
contentLike
CommentQuery contentLike(java.lang.String contentLike)
-
orderByUpdatedTime
CommentQuery orderByUpdatedTime()
-
orderByCreatedTime
CommentQuery orderByCreatedTime()
-
-