| Modifier and Type | Method and Description |
|---|---|
BatchQuery |
BatchQuery.batchId(String batchId)
Only select batches with the given id
|
BatchQuery |
BatchQuery.batchType(String batchType)
Only select batches which exist for the given type.
|
BatchQuery |
BatchQuery.batchTypes(Collection<String> batchTypes)
Only select batches which exist for the given types.
|
BatchQuery |
BatchQuery.completeTimeHigherThan(Date date)
Only select batches where the complete time is higher then the given date.
|
BatchQuery |
BatchQuery.completeTimeLowerThan(Date date)
Only select batches where the complete time is lower than the given date.
|
BatchQuery |
BatchQuery.createTimeHigherThan(Date date)
Only select batches where the create time is higher then the given date.
|
BatchQuery |
BatchQuery.createTimeLowerThan(Date date)
Only select batches where the create time is lower than the given date.
|
BatchQuery |
BatchQuery.orderByBatchCreateTime()
Order by batch create time (needs to be followed by
Query.asc() or Query.desc()). |
BatchQuery |
BatchQuery.orderByBatchId()
Order by batch id (needs to be followed by
Query.asc() or Query.desc()). |
BatchQuery |
BatchQuery.orderByBatchTenantId()
Order by batch create time (needs to be followed by
Query.asc() or Query.desc()). |
BatchQuery |
BatchQuery.searchKey(String searchKey)
Only select batches which exist for the given search key.
|
BatchQuery |
BatchQuery.searchKey2(String searchKey2)
Only select batches which exist for the given search key.
|
BatchQuery |
BatchQuery.status(String status)
Only select batches which exist for the given status.
|
BatchQuery |
BatchQuery.tenantId(String tenantId)
Only select batches which exist for the given tenant id.
|
BatchQuery |
BatchQuery.tenantIdLike(String tenantIdLike)
Only select batches with a tenant id like the given one.
|
BatchQuery |
BatchQuery.withoutTenantId()
Only select batches that do not have a tenant id.
|
| Modifier and Type | Method and Description |
|---|---|
long |
BatchService.findBatchCountByQueryCriteria(BatchQuery batchQuery) |
List<Batch> |
BatchService.findBatchesByQueryCriteria(BatchQuery batchQuery) |
Copyright © 2022 Flowable. All rights reserved.