Package org.flowable.batch.api
Interface BatchPartQuery
- All Superinterfaces:
org.flowable.common.engine.api.query.Query<BatchPartQuery,
BatchPart>
public interface BatchPartQuery
extends org.flowable.common.engine.api.query.Query<BatchPartQuery,BatchPart>
-
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 batch parts with the given batch idbatchSearchKey
(String searchKey) Only select batch parts with the given batch search key.batchSearchKey2
(String searchKey2) Only select batch parts with the batch given search key.Only select batch parts with the given batch type.Only select batch parts that have been completed.Only select batch parts with the given idOrder by batch id (needs to be followed byQuery.asc()
orQuery.desc()
).Order by batch part create time (needs to be followed byQuery.asc()
orQuery.desc()
).Only select batch parts with the given scope id.Only select batch parts with the given scope type.Only select batch parts with the given search key.searchKey2
(String searchKey2) Only select batch parts with the given search key.Only select batch parts with the given status.subScopeId
(String subScopeId) Only select batch parts with the given sub scope id.Only select batch parts with the given tenant id.tenantIdLike
(String tenantIdLike) Only select batch parts with a tenant id like the given one.Only select batch parts with the given type.Only select batch parts that do not have a tenant id.Methods inherited from interface org.flowable.common.engine.api.query.Query
asc, count, desc, list, listPage, orderBy, orderBy, singleResult
-
Method Details
-
id
Only select batch parts with the given id -
batchId
Only select batch parts with the given batch id -
type
Only select batch parts with the given type. -
searchKey
Only select batch parts with the given search key. -
searchKey2
Only select batch parts with the given search key. -
batchType
Only select batch parts with the given batch type. -
batchSearchKey
Only select batch parts with the given batch search key. -
batchSearchKey2
Only select batch parts with the batch given search key. -
status
Only select batch parts with the given status. -
scopeId
Only select batch parts with the given scope id. -
subScopeId
Only select batch parts with the given sub scope id. -
scopeType
Only select batch parts with the given scope type. -
tenantId
Only select batch parts with the given tenant id. -
tenantIdLike
Only select batch parts with a tenant id like the given one. -
withoutTenantId
BatchPartQuery withoutTenantId()Only select batch parts that do not have a tenant id. -
completed
BatchPartQuery completed()Only select batch parts that have been completed. -
orderByBatchId
BatchPartQuery orderByBatchId()Order by batch id (needs to be followed byQuery.asc()
orQuery.desc()
). -
orderByCreateTime
BatchPartQuery orderByCreateTime()Order by batch part create time (needs to be followed byQuery.asc()
orQuery.desc()
).
-