public interface HistoricCaseInstanceQuery extends Query<HistoricCaseInstanceQuery,HistoricCaseInstance>
Query.NullHandlingOnOrder| Modifier and Type | Method and Description |
|---|---|
HistoricCaseInstanceQuery |
caseDefinitionCategory(String caseDefinitionCategory)
Only select historic case instances with the given case definition category.
|
HistoricCaseInstanceQuery |
caseDefinitionId(String caseDefinitionId)
Only select historic case instances with the given case definition identifier.
|
HistoricCaseInstanceQuery |
caseDefinitionKey(String caseDefinitionKey)
Only select historic case instances with the given key.
|
HistoricCaseInstanceQuery |
caseDefinitionKeys(Set<String> caseDefinitionKeys)
Only select historic case instances with the given keys.
|
HistoricCaseInstanceQuery |
caseDefinitionName(String caseDefinitionName)
Only select historic case instances with the given case definition name.
|
HistoricCaseInstanceQuery |
caseDefinitionVersion(Integer caseDefinitionVersion)
Only select historic case instances with the given case definition version.
|
HistoricCaseInstanceQuery |
caseInstanceBusinessKey(String caseInstanceBusinessKey)
Only select historic case instances with the given business key.
|
HistoricCaseInstanceQuery |
caseInstanceCallbackId(String callbackId)
Only select historic case instances that have the provided callback identifier.
|
HistoricCaseInstanceQuery |
caseInstanceCallbackType(String callbackType)
Only select historic case instances that have the provided callback type.
|
HistoricCaseInstanceQuery |
caseInstanceId(String caseInstanceId)
Only select historic case instances with the given identifier.
|
HistoricCaseInstanceQuery |
caseInstanceIds(Set<String> caseInstanceIds)
Only select historic case instances with one the given identifiers.
|
HistoricCaseInstanceQuery |
caseInstanceParentId(String parentId)
Only select historic case instances with the parent identifier.
|
HistoricCaseInstanceQuery |
caseInstanceTenantId(String tenantId)
Only select historic case instances that have the tenant identifier.
|
HistoricCaseInstanceQuery |
caseInstanceWithoutTenantId()
Only select historic case instances that have no tenant identifier.
|
HistoricCaseInstanceQuery |
deploymentId(String deploymentId)
Only select historic case instances that are defined by a case definition with the given deployment identifier.
|
HistoricCaseInstanceQuery |
deploymentIds(List<String> deploymentIds)
Only select historic case instances that are defined by a case definition with one of the given deployment identifiers.
|
HistoricCaseInstanceQuery |
finished()
Only select historic case instances that are finished.
|
HistoricCaseInstanceQuery |
finishedAfter(Date afterTime)
Only select historic case instances that are finished after the provided date time.
|
HistoricCaseInstanceQuery |
finishedBefore(Date beforeTime)
Only select historic case instances that are finished before the provided date time.
|
HistoricCaseInstanceQuery |
includeCaseVariables()
Include historic case variables in the historic case query result
|
HistoricCaseInstanceQuery |
limitCaseVariables(Integer historicCaseVariablesLimit)
Limit historic case instance variables
|
HistoricCaseInstanceQuery |
orderByCaseDefinitionId() |
HistoricCaseInstanceQuery |
orderByCaseDefinitionKey() |
HistoricCaseInstanceQuery |
orderByCaseInstanceId() |
HistoricCaseInstanceQuery |
orderByEndTime() |
HistoricCaseInstanceQuery |
orderByStartTime() |
HistoricCaseInstanceQuery |
orderByTenantId() |
HistoricCaseInstanceQuery |
startedAfter(Date afterTime)
Only select historic case instances that are started after the provided date time.
|
HistoricCaseInstanceQuery |
startedBefore(Date beforeTime)
Only select historic case instances that are started before the provided date time.
|
HistoricCaseInstanceQuery |
startedBy(String userId)
Only select historic case instances that are started by the provided user identifier.
|
HistoricCaseInstanceQuery |
unfinished()
Only select historic case instances that are not finished.
|
HistoricCaseInstanceQuery |
variableExists(String name)
Only select case instances which have a variable with the given name.
|
HistoricCaseInstanceQuery |
variableNotExists(String name)
Only select case instances which does not have a variable with the given name.
|
HistoricCaseInstanceQuery |
variableValueEquals(Object value)
Only select case instances which had at least one global variable with the given value when they ended.
|
HistoricCaseInstanceQuery |
variableValueEquals(String name,
Object value)
Only select case instances which had a global variable with the given value when they ended.
|
HistoricCaseInstanceQuery |
variableValueEqualsIgnoreCase(String name,
String value)
Only select historic case instances which have a string variable with the given value, case insensitive.
|
HistoricCaseInstanceQuery |
variableValueGreaterThan(String name,
Object value)
Only select case instances which had a global variable value greater than the passed value when they ended.
|
HistoricCaseInstanceQuery |
variableValueGreaterThanOrEqual(String name,
Object value)
Only select case instances which had a global variable value greater than or equal to the passed value when they ended.
|
HistoricCaseInstanceQuery |
variableValueLessThan(String name,
Object value)
Only select case instances which had a global variable value less than the passed value when the ended.
|
HistoricCaseInstanceQuery |
variableValueLessThanOrEqual(String name,
Object value)
Only select case instances which has a global variable value less than or equal to the passed value when they ended.
|
HistoricCaseInstanceQuery |
variableValueLike(String name,
String value)
Only select case instances which had global variable value like the given value when they ended.
|
HistoricCaseInstanceQuery |
variableValueLikeIgnoreCase(String name,
String value)
Only select case instances which had global variable value like (case insensitive) the given value when they ended.
|
HistoricCaseInstanceQuery |
variableValueNotEquals(String name,
Object value)
Only select case instances which had a global variable with the given name, but with a different value than the passed value when they ended.
|
HistoricCaseInstanceQuery caseInstanceId(String caseInstanceId)
HistoricCaseInstanceQuery caseInstanceIds(Set<String> caseInstanceIds)
HistoricCaseInstanceQuery caseInstanceBusinessKey(String caseInstanceBusinessKey)
HistoricCaseInstanceQuery caseInstanceParentId(String parentId)
HistoricCaseInstanceQuery caseDefinitionKey(String caseDefinitionKey)
HistoricCaseInstanceQuery caseDefinitionKeys(Set<String> caseDefinitionKeys)
HistoricCaseInstanceQuery caseDefinitionId(String caseDefinitionId)
HistoricCaseInstanceQuery caseDefinitionCategory(String caseDefinitionCategory)
HistoricCaseInstanceQuery caseDefinitionName(String caseDefinitionName)
HistoricCaseInstanceQuery caseDefinitionVersion(Integer caseDefinitionVersion)
HistoricCaseInstanceQuery includeCaseVariables()
HistoricCaseInstanceQuery limitCaseVariables(Integer historicCaseVariablesLimit)
HistoricCaseInstanceQuery deploymentId(String deploymentId)
HistoricCaseInstanceQuery deploymentIds(List<String> deploymentIds)
HistoricCaseInstanceQuery finished()
HistoricCaseInstanceQuery unfinished()
HistoricCaseInstanceQuery startedBefore(Date beforeTime)
HistoricCaseInstanceQuery startedAfter(Date afterTime)
HistoricCaseInstanceQuery finishedBefore(Date beforeTime)
HistoricCaseInstanceQuery finishedAfter(Date afterTime)
HistoricCaseInstanceQuery startedBy(String userId)
HistoricCaseInstanceQuery caseInstanceCallbackId(String callbackId)
HistoricCaseInstanceQuery caseInstanceCallbackType(String callbackType)
HistoricCaseInstanceQuery caseInstanceTenantId(String tenantId)
HistoricCaseInstanceQuery caseInstanceWithoutTenantId()
HistoricCaseInstanceQuery variableValueEquals(String name, Object value)
Serializable objects (which are not primitive type wrappers) are not supported.name - of the variable, cannot be null.HistoricCaseInstanceQuery variableValueEquals(Object value)
Serializable objects (which are not primitive type wrappers) are not supported.HistoricCaseInstanceQuery variableValueEqualsIgnoreCase(String name, String value)
name - name of the variable, cannot be null.value - value of the variable, cannot be null.HistoricCaseInstanceQuery variableValueNotEquals(String name, Object value)
Serializable objects (which are not primitive type wrappers) are not supported.name - of the variable, cannot be null.HistoricCaseInstanceQuery variableValueGreaterThan(String name, Object value)
Serializable objects (which are not primitive type wrappers) are not supported.name - cannot be null.value - cannot be null.HistoricCaseInstanceQuery variableValueGreaterThanOrEqual(String name, Object value)
Serializable objects (which are not
primitive type wrappers) are not supported.name - cannot be null.value - cannot be null.HistoricCaseInstanceQuery variableValueLessThan(String name, Object value)
Serializable objects (which are not primitive type wrappers) are not supported.name - cannot be null.value - cannot be null.HistoricCaseInstanceQuery variableValueLessThanOrEqual(String name, Object value)
Serializable objects (which are not primitive type wrappers) are not supported.name - cannot be null.value - cannot be null.HistoricCaseInstanceQuery variableValueLike(String name, String value)
name - cannot be null.value - cannot be null. The string can include the wildcard character '%' to express like-strategy: starts with (string%), ends with (%string) or contains (%string%).HistoricCaseInstanceQuery variableValueLikeIgnoreCase(String name, String value)
name - cannot be null.value - cannot be null. The string can include the wildcard character '%' to express like-strategy: starts with (string%), ends with (%string) or contains (%string%).HistoricCaseInstanceQuery variableExists(String name)
name - cannot be null.HistoricCaseInstanceQuery variableNotExists(String name)
name - cannot be null.HistoricCaseInstanceQuery orderByCaseInstanceId()
HistoricCaseInstanceQuery orderByCaseDefinitionKey()
HistoricCaseInstanceQuery orderByCaseDefinitionId()
HistoricCaseInstanceQuery orderByStartTime()
HistoricCaseInstanceQuery orderByEndTime()
HistoricCaseInstanceQuery orderByTenantId()
Copyright © 2018 Flowable. All rights reserved.