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 CommentQuerycontent(String content)CommentQuerycontentLike(String contentLike)CommentQuerycreated(Date created)CommentQuerycreatedAfter(Date createdAfter)CommentQuerycreatedBefore(Date createdBefore)CommentQueryid(String id)CommentQueryorderByCreatedTime()CommentQueryorderByUpdatedTime()CommentQueryscopeId(String scopeId)CommentQueryscopeType(String scopeType)CommentQueryupdated(Date updated)CommentQueryupdatedAfter(Date updatedAfter)CommentQueryupdatedBefore(Date updatedBefore)CommentQueryuserId(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()
-
-