Interface DatabaseContentObjectQuery

All Superinterfaces:
org.flowable.common.engine.api.query.Query<DatabaseContentObjectQuery,​DatabaseContentObject>
All Known Implementing Classes:
DatabaseContentObjectQueryImpl

public interface DatabaseContentObjectQuery
extends org.flowable.common.engine.api.query.Query<DatabaseContentObjectQuery,​DatabaseContentObject>
  • Nested Class Summary

    Nested classes/interfaces inherited from interface org.flowable.common.engine.api.query.Query

    org.flowable.common.engine.api.query.Query.NullHandlingOnOrder
  • Method Summary

    Modifier and Type Method Description
    DatabaseContentObjectQuery createdDate​(java.util.Date submittedDate)
    Only select rendition items created on the given time
    DatabaseContentObjectQuery createdDateAfter​(java.util.Date afterTime)
    Only select rendition items created after the given time
    DatabaseContentObjectQuery createdDateBefore​(java.util.Date beforeTime)
    Only select rendition items created before the given time
    DatabaseContentObjectQuery id​(java.lang.String id)
    Only select rendition items with the given id.
    DatabaseContentObjectQuery ids​(java.util.Set<java.lang.String> ids)
    Only select rendition items with the given ids.
    DatabaseContentObjectQuery orderByCreatedDate()
    Order by created date (needs to be followed by Query.asc() or Query.desc()).

    Methods inherited from interface org.flowable.common.engine.api.query.Query

    asc, count, desc, list, listPage, orderBy, orderBy, singleResult