| 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.activePlanItemDefinitionId(String planItemDefinitionId)
Select the case instances with an active plan item definition id equal to the provided definition id.
|
CaseInstanceQuery |
CaseInstanceQuery.activePlanItemDefinitionIds(Set<String> planItemDefinitionIds)
Select the case instances with an active plan item definition id equal to one of the provided definition ids.
|
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.caseInstanceBusinessStatus(String caseInstanceBusinessStatus) |
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.caseInstanceLastReactivatedAfter(Date afterTime) |
CaseInstanceQuery |
CaseInstanceQuery.caseInstanceLastReactivatedBefore(Date beforeTime) |
CaseInstanceQuery |
CaseInstanceQuery.caseInstanceLastReactivatedBy(String userId) |
CaseInstanceQuery |
CaseInstanceQuery.caseInstanceName(String caseInstanceName) |
CaseInstanceQuery |
CaseInstanceQuery.caseInstanceNameLike(String caseInstanceNameLike) |
CaseInstanceQuery |
CaseInstanceQuery.caseInstanceNameLikeIgnoreCase(String caseInstanceNameLikeIgnoreCase) |
CaseInstanceQuery |
CaseInstanceQuery.caseInstanceParentId(String parentId) |
CaseInstanceQuery |
CaseInstanceQuery.caseInstanceReferenceId(String referenceId) |
CaseInstanceQuery |
CaseInstanceQuery.caseInstanceReferenceType(String referenceType) |
CaseInstanceQuery |
CaseInstanceQuery.caseInstanceStartedAfter(Date afterTime) |
CaseInstanceQuery |
CaseInstanceQuery.caseInstanceStartedBefore(Date beforeTime) |
CaseInstanceQuery |
CaseInstanceQuery.caseInstanceStartedBy(String userId) |
CaseInstanceQuery |
CaseInstanceQuery.caseInstanceState(String state) |
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.involvedGroup(String groupId,
String identityLinkType)
Select the case instances with which the group with the given id and identity link type are involved.
|
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.involvedUser(String userId,
String identityLinkType)
Select the case instances with which the user with the given id and identity link type are involved.
|
CaseInstanceQuery |
CaseInstanceQuery.limitCaseInstanceVariables(Integer caseInstanceVariablesLimit)
Deprecated.
no longer needed, this is a noop
|
CaseInstanceQuery |
CaseInstanceQuery.locale(String locale)
Localize case name to specified locale.
|
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.
|
CaseInstanceQuery |
CaseInstanceQuery.withLocalizationFallback()
Instruct localization to fallback to more general locales including the default locale of the JVM if the specified locale is not found.
|
Copyright © 2022 Flowable. All rights reserved.