Interface CommentQuery
-
- All Superinterfaces:
Query<CommentQuery,Comment>
- All Known Implementing Classes:
CommentQueryImpl
public interface CommentQuery extends Query<CommentQuery,Comment>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.flowable.common.engine.api.query.Query
Query.NullHandlingOnOrder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CommentQuery
content(String content)
CommentQuery
contentLike(String contentLike)
CommentQuery
created(Date created)
CommentQuery
createdAfter(Date createdAfter)
CommentQuery
createdBefore(Date createdBefore)
CommentQuery
id(String id)
CommentQuery
orderByCreatedTime()
CommentQuery
orderByUpdatedTime()
CommentQuery
scopeId(String scopeId)
CommentQuery
scopeType(String scopeType)
CommentQuery
updated(Date updated)
CommentQuery
updatedAfter(Date updatedAfter)
CommentQuery
updatedBefore(Date updatedBefore)
CommentQuery
userId(String userId)
-
-
-
Method Detail
-
id
CommentQuery id(String id)
-
scopeId
CommentQuery scopeId(String scopeId)
-
scopeType
CommentQuery scopeType(String scopeType)
-
userId
CommentQuery userId(String userId)
-
content
CommentQuery content(String content)
-
created
CommentQuery created(Date created)
-
updated
CommentQuery updated(Date updated)
-
createdBefore
CommentQuery createdBefore(Date createdBefore)
-
updatedBefore
CommentQuery updatedBefore(Date updatedBefore)
-
createdAfter
CommentQuery createdAfter(Date createdAfter)
-
updatedAfter
CommentQuery updatedAfter(Date updatedAfter)
-
contentLike
CommentQuery contentLike(String contentLike)
-
orderByUpdatedTime
CommentQuery orderByUpdatedTime()
-
orderByCreatedTime
CommentQuery orderByCreatedTime()
-
-