public interface DatabaseContentObjectQuery extends Query<DatabaseContentObjectQuery,DatabaseContentObject>
Query.NullHandlingOnOrder
Modifier and Type | Method and Description |
---|---|
DatabaseContentObjectQuery |
createdDate(Date submittedDate)
Only select rendition items created on the given time
|
DatabaseContentObjectQuery |
createdDateAfter(Date afterTime)
Only select rendition items created after the given time
|
DatabaseContentObjectQuery |
createdDateBefore(Date beforeTime)
Only select rendition items created before the given time
|
DatabaseContentObjectQuery |
id(String id)
Only select rendition items with the given id.
|
DatabaseContentObjectQuery |
ids(Set<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() ). |
DatabaseContentObjectQuery id(String id)
DatabaseContentObjectQuery ids(Set<String> ids)
DatabaseContentObjectQuery createdDate(Date submittedDate)
DatabaseContentObjectQuery createdDateBefore(Date beforeTime)
DatabaseContentObjectQuery createdDateAfter(Date afterTime)
DatabaseContentObjectQuery orderByCreatedDate()
Query.asc()
or Query.desc()
).