HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.active() |
Only select historic case instances which are active
|
HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.caseActivityIdIn(java.lang.String... caseActivityIds) |
Only selects historic case instances with historic case activity instances
in at least one of the given case activity ids.
|
HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.caseDefinitionId(java.lang.String caseDefinitionId) |
Only select historic case instances for the given case definition
|
HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.caseDefinitionKey(java.lang.String caseDefinitionKey) |
Only select historic case instances that are defined by a case definition with the given key.
|
HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.caseDefinitionKeyNotIn(java.util.List<java.lang.String> caseDefinitionKeys) |
Only select historic case instances that don't have a case definition of which the key is present in the given list
|
HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.caseDefinitionName(java.lang.String caseDefinitionName) |
Only select historic case instances that are defined by a case definition with the given name.
|
HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.caseDefinitionNameLike(java.lang.String nameLike) |
Only select historic case instances that are defined by case definition which name
is like the given value.
|
HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.caseInstanceBusinessKey(java.lang.String caseInstanceBusinessKey) |
Only select historic case instances with the given business key
|
HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.caseInstanceBusinessKeyLike(java.lang.String caseInstanceBusinessKeyLike) |
Only select historic case instances which had a business key like the given value.
|
HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.caseInstanceId(java.lang.String caseInstanceId) |
Only select historic case instances with the given case instance id.
|
HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.caseInstanceIds(java.util.Set<java.lang.String> caseInstanceIds) |
Only select historic case instances whose id is in the given set of ids.
|
HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.closed() |
Only select historic case instances which are closed
|
HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.closedAfter(java.util.Date date) |
Only select historic case instances that were closed after the given date.
|
HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.closedBefore(java.util.Date date) |
Only select historic case instances that were closed before the given date.
|
HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.completed() |
Only select historic case instances which are completed
|
HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.createdAfter(java.util.Date date) |
Only select historic case instances that were created after the given date.
|
HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.createdBefore(java.util.Date date) |
Only select historic case instances that were created before the given date.
|
HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.createdBy(java.lang.String userId) |
Only select historic case instance that are created by the given user.
|
HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.matchVariableNamesIgnoreCase() |
The query will match the names of variables in a case-insensitive way.
|
HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.matchVariableValuesIgnoreCase() |
The query will match the values of variables in a case-insensitive way.
|
HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.notClosed() |
Only select historic case instance that are not yet closed.
|
HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.orderByCaseDefinitionId() |
|
HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.orderByCaseInstanceBusinessKey() |
|
HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.orderByCaseInstanceCloseTime() |
|
HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.orderByCaseInstanceCreateTime() |
|
HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.orderByCaseInstanceDuration() |
|
HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.orderByCaseInstanceId() |
|
HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.orderByTenantId() |
|
HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.subCaseInstanceId(java.lang.String subCaseInstanceId) |
Only select historic case instances having a sub case instance
with the given case instance id.
|
HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.subProcessInstanceId(java.lang.String subProcessInstanceId) |
Only select historic case instances having a sub process instance
with the given process instance id.
|
HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.superCaseInstanceId(java.lang.String superCaseInstanceId) |
Only select historic case instances started by the given case instance.
|
HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.superProcessInstanceId(java.lang.String superProcessInstanceId) |
Only select historic case instances started by the given process instance.
|
HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.tenantIdIn(java.lang.String... tenantIds) |
Only select historic case instances with one of the given tenant ids.
|
HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.terminated() |
Only select historic case instances which are terminated
|
HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.variableValueEquals(java.lang.String name,
java.lang.Object value) |
Only select case instances which have a global variable with the given value.
|
HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.variableValueGreaterThan(java.lang.String name,
java.lang.Object value) |
Only select case instances which had a global variable with the given name
and a value greater than the given value when they where closed.
|
HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.variableValueGreaterThanOrEqual(java.lang.String name,
java.lang.Object value) |
Only select case instances which have a global variable with the given name
and a value greater or equal than the given value.
|
HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.variableValueLessThan(java.lang.String name,
java.lang.Object value) |
Only select case instances which have a global variable with the given name
and a value less than the given value.
|
HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.variableValueLessThanOrEqual(java.lang.String name,
java.lang.Object value) |
Only select case instances which have a global variable with the given name
and a value less or equal than the given value.
|
HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.variableValueLike(java.lang.String name,
java.lang.String value) |
Only select case instances which have a global variable with the given name
and a value like given value.
|
HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.variableValueNotEquals(java.lang.String name,
java.lang.Object value) |
Only select case instances which have a global variable with the given name
but a different value.
|
HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.variableValueNotLike(java.lang.String name,
java.lang.String value) |
Only select case instances which have a global variable
with the given name and not matching the given value.
|
HistoricCaseInstanceQuery |
HistoricCaseInstanceQuery.withoutTenantId() |
Only selects historic case instances which have no tenant id.
|