Package org.camunda.bpm.engine.batch
Interface BatchStatisticsQuery
-
- All Superinterfaces:
Query<BatchStatisticsQuery,BatchStatistics>
- All Known Implementing Classes:
BatchStatisticsQueryImpl
public interface BatchStatisticsQuery extends Query<BatchStatisticsQuery,BatchStatistics>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchStatisticsQuery
active()
Only selects batches which are activeBatchStatisticsQuery
batchId(java.lang.String batchId)
Only select batch statistics for the given batch id.BatchStatisticsQuery
orderById()
Returns batch statistics sorted by batch id; must be followed by an invocation ofQuery.asc()
orQuery.desc()
.BatchStatisticsQuery
orderByTenantId()
Returns batch statistics sorted by tenant id; must be followed by an invocation ofQuery.asc()
orQuery.desc()
.BatchStatisticsQuery
suspended()
Only selects batches which are suspendedBatchStatisticsQuery
tenantIdIn(java.lang.String... tenantIds)
Only selects batch statistics with one of the given tenant ids.BatchStatisticsQuery
type(java.lang.String type)
Only select batch statistics of the given type.BatchStatisticsQuery
withoutTenantId()
Only selects batch statistics which have no tenant id.-
Methods inherited from interface org.camunda.bpm.engine.query.Query
asc, count, desc, list, listPage, singleResult, unlimitedList
-
-
-
-
Method Detail
-
batchId
BatchStatisticsQuery batchId(java.lang.String batchId)
Only select batch statistics for the given batch id.
-
type
BatchStatisticsQuery type(java.lang.String type)
Only select batch statistics of the given type.
-
tenantIdIn
BatchStatisticsQuery tenantIdIn(java.lang.String... tenantIds)
Only selects batch statistics with one of the given tenant ids.
-
withoutTenantId
BatchStatisticsQuery withoutTenantId()
Only selects batch statistics which have no tenant id.
-
active
BatchStatisticsQuery active()
Only selects batches which are active
-
suspended
BatchStatisticsQuery suspended()
Only selects batches which are suspended
-
orderById
BatchStatisticsQuery orderById()
Returns batch statistics sorted by batch id; must be followed by an invocation ofQuery.asc()
orQuery.desc()
.
-
orderByTenantId
BatchStatisticsQuery orderByTenantId()
Returns batch statistics sorted by tenant id; must be followed by an invocation ofQuery.asc()
orQuery.desc()
.
-
-