| Package | Description |
|---|---|
| org.flowable.cmmn.api | |
| org.flowable.cmmn.api.runtime |
| Modifier and Type | Method and Description |
|---|---|
CaseInstanceQuery |
CmmnRuntimeService.createCaseInstanceQuery() |
| Modifier and Type | Method and Description |
|---|---|
CaseInstanceQuery |
CaseInstanceQuery.caseDefinitionCategory(String caseDefinitionCategory) |
CaseInstanceQuery |
CaseInstanceQuery.caseDefinitionId(String caseDefinitionId) |
CaseInstanceQuery |
CaseInstanceQuery.caseDefinitionKey(String caseDefinitionKey) |
CaseInstanceQuery |
CaseInstanceQuery.caseDefinitionKeys(Set<String> caseDefinitionKeys) |
CaseInstanceQuery |
CaseInstanceQuery.caseDefinitionName(String caseDefinitionName) |
CaseInstanceQuery |
CaseInstanceQuery.caseDefinitionVersion(Integer caseDefinitionVersion) |
CaseInstanceQuery |
CaseInstanceQuery.caseInstanceBusinessKey(String caseInstanceBusinessKey) |
CaseInstanceQuery |
CaseInstanceQuery.caseInstanceCallbackId(String callbackId) |
CaseInstanceQuery |
CaseInstanceQuery.caseInstanceCallbackType(String callbackType) |
CaseInstanceQuery |
CaseInstanceQuery.caseInstanceId(String caseInstanceId) |
CaseInstanceQuery |
CaseInstanceQuery.caseInstanceIds(Set<String> caseInstanceIds) |
CaseInstanceQuery |
CaseInstanceQuery.caseInstanceIsCompleteable() |
CaseInstanceQuery |
CaseInstanceQuery.caseInstanceParentId(String parentId) |
CaseInstanceQuery |
CaseInstanceQuery.caseInstanceStartedAfter(Date afterTime) |
CaseInstanceQuery |
CaseInstanceQuery.caseInstanceStartedBefore(Date beforeTime) |
CaseInstanceQuery |
CaseInstanceQuery.caseInstanceStartedBy(String userId) |
CaseInstanceQuery |
CaseInstanceQuery.caseInstanceTenantId(String tenantId) |
CaseInstanceQuery |
CaseInstanceQuery.caseInstanceTenantIdLike(String tenantIdLike) |
CaseInstanceQuery |
CaseInstanceQuery.caseInstanceWithoutTenantId() |
CaseInstanceQuery |
CaseInstanceQuery.endOr()
End an OR statement.
|
CaseInstanceQuery |
CaseInstanceQuery.includeCaseVariables()
Includes case variables into the query result.
|
CaseInstanceQuery |
CaseInstanceQuery.involvedGroups(Set<String> groupIds)
Select the case instances with which the groups with the given ids are involved.
|
CaseInstanceQuery |
CaseInstanceQuery.involvedUser(String userId)
Select the case instances with which the user with the given id is involved.
|
CaseInstanceQuery |
CaseInstanceQuery.limitCaseInstanceVariables(Integer caseInstanceVariablesLimit)
Limit case instance variables
|
CaseInstanceQuery |
CaseInstanceQuery.or()
Begin an OR statement.
|
CaseInstanceQuery |
CaseInstanceQuery.orderByCaseDefinitionId() |
CaseInstanceQuery |
CaseInstanceQuery.orderByCaseDefinitionKey() |
CaseInstanceQuery |
CaseInstanceQuery.orderByCaseInstanceId() |
CaseInstanceQuery |
CaseInstanceQuery.orderByStartTime() |
CaseInstanceQuery |
CaseInstanceQuery.orderByTenantId() |
CaseInstanceQuery |
CaseInstanceQuery.variableExists(String name)
Only select case instances which have a variable with the given name.
|
CaseInstanceQuery |
CaseInstanceQuery.variableNotExists(String name)
Only select case instances which don't have a variable with the given name.
|
CaseInstanceQuery |
CaseInstanceQuery.variableValueEquals(Object value)
Only select case instances which have at least one global variable with the given value.
|
CaseInstanceQuery |
CaseInstanceQuery.variableValueEquals(String name,
Object value)
Only select case instances which have a global variable with the given value.
|
CaseInstanceQuery |
CaseInstanceQuery.variableValueEqualsIgnoreCase(String name,
String value)
Only select case instances which have a local string variable with the given value, case insensitive.
|
CaseInstanceQuery |
CaseInstanceQuery.variableValueGreaterThan(String name,
Object value)
Only select case instances which have a variable value greater than the passed value.
|
CaseInstanceQuery |
CaseInstanceQuery.variableValueGreaterThanOrEqual(String name,
Object value)
Only select case instances which have a global variable value greater than or equal to the passed value.
|
CaseInstanceQuery |
CaseInstanceQuery.variableValueLessThan(String name,
Object value)
Only select case instances which have a global variable value less than the passed value.
|
CaseInstanceQuery |
CaseInstanceQuery.variableValueLessThanOrEqual(String name,
Object value)
Only select case instances which have a global variable value less than or equal to the passed value.
|
CaseInstanceQuery |
CaseInstanceQuery.variableValueLike(String name,
String value)
Only select case instances which have a global variable value like the given value.
|
CaseInstanceQuery |
CaseInstanceQuery.variableValueLikeIgnoreCase(String name,
String value)
Only select case instances which have a global variable value like the given value (case insensitive).
|
CaseInstanceQuery |
CaseInstanceQuery.variableValueNotEquals(String name,
Object value)
Only select case instances which have a global variable with the given name, but with a different value than the passed value.
|
CaseInstanceQuery |
CaseInstanceQuery.variableValueNotEqualsIgnoreCase(String name,
String value)
Only select case instances which have a local string variable which is not the given value, case insensitive.
|
Copyright © 2019 Flowable. All rights reserved.