Package org.flowable.batch.api
Interface BatchQuery
- All Superinterfaces:
org.flowable.common.engine.api.query.DeleteQuery<BatchQuery,
,Batch> org.flowable.common.engine.api.query.Query<BatchQuery,
Batch>
public interface BatchQuery
extends org.flowable.common.engine.api.query.Query<BatchQuery,Batch>, org.flowable.common.engine.api.query.DeleteQuery<BatchQuery,Batch>
-
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 TypeMethodDescriptionOnly select batches with the given idOnly select batches which exist for the given type.batchTypes
(Collection<String> batchTypes) Only select batches which exist for the given types.completeTimeHigherThan
(Date date) Only select batches where the complete time is higher then the given date.completeTimeLowerThan
(Date date) Only select batches where the complete time is lower than the given date.createTimeHigherThan
(Date date) Only select batches where the create time is higher then the given date.createTimeLowerThan
(Date date) Only select batches where the create time is lower than the given date.Order by batch create time (needs to be followed byQuery.asc()
orQuery.desc()
).Order by batch id (needs to be followed byQuery.asc()
orQuery.desc()
).Order by batch create time (needs to be followed byQuery.asc()
orQuery.desc()
).Only select batches which exist for the given search key.searchKey2
(String searchKey2) Only select batches which exist for the given search key.Only select batches which exist for the given status.Only select batches which exist for the given tenant id.tenantIdLike
(String tenantIdLike) Only select batches with a tenant id like the given one.Only select batches that do not have a tenant id.Methods inherited from interface org.flowable.common.engine.api.query.DeleteQuery
delete, deleteWithRelatedData
Methods inherited from interface org.flowable.common.engine.api.query.Query
asc, count, desc, list, listPage, orderBy, orderBy, singleResult
-
Method Details
-
batchId
Only select batches with the given id -
batchType
Only select batches which exist for the given type. -
batchTypes
Only select batches which exist for the given types. -
searchKey
Only select batches which exist for the given search key. -
searchKey2
Only select batches which exist for the given search key. -
createTimeLowerThan
Only select batches where the create time is lower than the given date. -
createTimeHigherThan
Only select batches where the create time is higher then the given date. -
completeTimeLowerThan
Only select batches where the complete time is lower than the given date. -
completeTimeHigherThan
Only select batches where the complete time is higher then the given date. -
status
Only select batches which exist for the given status. -
tenantId
Only select batches which exist for the given tenant id. -
tenantIdLike
Only select batches with a tenant id like the given one. -
withoutTenantId
BatchQuery withoutTenantId()Only select batches that do not have a tenant id. -
orderByBatchId
BatchQuery orderByBatchId()Order by batch id (needs to be followed byQuery.asc()
orQuery.desc()
). -
orderByBatchCreateTime
BatchQuery orderByBatchCreateTime()Order by batch create time (needs to be followed byQuery.asc()
orQuery.desc()
). -
orderByBatchTenantId
BatchQuery orderByBatchTenantId()Order by batch create time (needs to be followed byQuery.asc()
orQuery.desc()
).
-