Package org.camunda.bpm.engine.runtime
Interface VariableInstanceQuery
- All Superinterfaces:
Query<VariableInstanceQuery,
VariableInstance>
- All Known Implementing Classes:
VariableInstanceQueryImpl
- Author:
- roman.smirnov
-
Method Summary
Modifier and TypeMethodDescriptionactivityInstanceIdIn
(String... activityInstanceIds) Only select variable instances which have one of the activity instance ids.Only select variable instances which are related to one of the given batch ids.caseExecutionIdIn
(String... caseExecutionIds) Only select variable instances which have one of the case execution ids.caseInstanceIdIn
(String... caseInstanceIds) Only select variable instances which have one of the case instance ids.Disable fetching of byte array and file values.Disable deserialization of variable values that are custom objects.executionIdIn
(String... executionIds) Only select variable instances which have one of the executions ids.The query will match the names of variables in a case-insensitive way.
Note: This affects allvariableValueXXX
filters:variableValueEquals(String, Object)
variableValueGreaterThan(String, Object)
variableValueGreaterThanOrEqual(String, Object)
variableValueLessThan(String, Object)
variableValueLessThanOrEqual(String, Object)
variableValueLike(String, String)
variableValueNotEquals(String, Object)
It does not affect:variableName(String)
variableNameIn(String...)
variableNameLike(String)
The query will match the values of variables in a case-insensitive way.
Note: This affects allvariableValueXXX
filters:variableValueEquals(String, Object)
variableValueGreaterThan(String, Object)
variableValueGreaterThanOrEqual(String, Object)
variableValueLessThan(String, Object)
variableValueLessThanOrEqual(String, Object)
variableValueLike(String, String)
variableValueNotEquals(String, Object)
Order by activity instance id (needs to be followed byQuery.asc()
orQuery.desc()
).Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).Order by variable name (needs to be followed byQuery.asc()
orQuery.desc()
).Order by variable type (needs to be followed byQuery.asc()
orQuery.desc()
).processInstanceIdIn
(String... processInstanceIds) Only select variable instances which have one of the process instance ids.Only select variable instances which have one of the task ids.tenantIdIn
(String... tenantIds) Only select variable instances with one of the given tenant ids.variableId
(String id) Only select the variable with the given IdvariableName
(String variableName) Only select variable instances which have the variable name.variableNameIn
(String... variableNames) Only select variable instances which have one of the variables names.variableNameLike
(String variableNameLike) Only select variable instances which have the name like the assigned variable name.variableScopeIdIn
(String... variableScopeIds) Only select variables instances which have on of the variable scope ids.variableValueEquals
(String name, Object value) Only select variables instances which have the given name and value.variableValueGreaterThan
(String name, Object value) Only select variable instances which value is greater than the passed value.variableValueGreaterThanOrEqual
(String name, Object value) Only select variable instances which value is greater than or equal to the passed value.variableValueLessThan
(String name, Object value) Only select variable instances which value is less than the passed value.variableValueLessThanOrEqual
(String name, Object value) Only select variable instances which value is less than or equal to the passed value.variableValueLike
(String name, String value) Only select variable instances which value is like the given value.variableValueNotEquals
(String name, Object value) Only select variable instances which have the given name, but with a different value than the passed value.Methods inherited from interface org.camunda.bpm.engine.query.Query
asc, count, desc, list, listPage, singleResult, unlimitedList
-
Method Details
-
variableId
Only select the variable with the given Id- Parameters:
id
- the id of the variable to select- Returns:
- the query object
-
variableName
Only select variable instances which have the variable name. -
variableNameIn
Only select variable instances which have one of the variables names. -
variableNameLike
Only select variable instances which have the name like the assigned variable name. The string can include the wildcard character '%' to express like-strategy: starts with (string%), ends with (%string) or contains (%string%). -
executionIdIn
Only select variable instances which have one of the executions ids. -
processInstanceIdIn
Only select variable instances which have one of the process instance ids. -
caseExecutionIdIn
Only select variable instances which have one of the case execution ids. -
caseInstanceIdIn
Only select variable instances which have one of the case instance ids. -
taskIdIn
Only select variable instances which have one of the task ids. -
batchIdIn
Only select variable instances which are related to one of the given batch ids. -
variableScopeIdIn
Only select variables instances which have on of the variable scope ids. -
activityInstanceIdIn
Only select variable instances which have one of the activity instance ids. -
matchVariableNamesIgnoreCase
VariableInstanceQuery matchVariableNamesIgnoreCase()The query will match the names of variables in a case-insensitive way.
Note: This affects allvariableValueXXX
filters: It does not affect: -
matchVariableValuesIgnoreCase
VariableInstanceQuery matchVariableValuesIgnoreCase()The query will match the values of variables in a case-insensitive way.
Note: This affects allvariableValueXXX
filters: -
variableValueEquals
Only select variables instances which have the given name and value. The type of variable is determined based on the value, using types configured inProcessEngineConfigurationImpl.getVariableSerializers()
. Byte-arrays andSerializable
objects (which are not primitive type wrappers) are not supported.- Parameters:
name
- name of the variable, cannot be null.value
- variable value, can be null.
-
variableValueNotEquals
Only select variable instances which have the given name, but with a different value than the passed value. Byte-arrays andSerializable
objects (which are not primitive type wrappers) are not supported.- Parameters:
name
- name of the variable, cannot be null.value
- variable value, can be null.
-
variableValueGreaterThan
Only select variable instances which value is greater than the passed value. Booleans, Byte-arrays andSerializable
objects (which are not primitive type wrappers) are not supported.- Parameters:
name
- variable name, cannot be null.value
- variable value, cannot be null.
-
variableValueGreaterThanOrEqual
Only select variable instances which value is greater than or equal to the passed value. Booleans, Byte-arrays andSerializable
objects (which are not primitive type wrappers) are not supported.- Parameters:
name
- variable name, cannot be null.value
- variable value, cannot be null.
-
variableValueLessThan
Only select variable instances which value is less than the passed value. Booleans, Byte-arrays andSerializable
objects (which are not primitive type wrappers) are not supported.- Parameters:
name
- variable name, cannot be null.value
- variable value, cannot be null.
-
variableValueLessThanOrEqual
Only select variable instances which value is less than or equal to the passed value. Booleans, Byte-arrays andSerializable
objects (which are not primitive type wrappers) are not supported.- Parameters:
name
- variable name, cannot be null.value
- variable value, cannot be null.
-
disableBinaryFetching
VariableInstanceQuery disableBinaryFetching()Disable fetching of byte array and file values. By default, the query will fetch such values. By calling this method you can prevent the values of (potentially large) blob data chunks to be fetched. The variables themselves are nonetheless included in the query result.- Returns:
- the query builder
-
disableCustomObjectDeserialization
VariableInstanceQuery disableCustomObjectDeserialization()Disable deserialization of variable values that are custom objects. By default, the query will attempt to deserialize the value of these variables. By calling this method you can prevent such attempts in environments where their classes are not available. Independent of this setting, variable serialized values are accessible. -
variableValueLike
Only select variable instances which value is like the given value. This be used on string variables only.- Parameters:
name
- variable name, cannot be null.value
- variable value, cannot be null. The string can include the wildcard character '%' to express like-strategy: starts with (string%), ends with (%string) or contains (%string%).
-
tenantIdIn
Only select variable instances with one of the given tenant ids. -
orderByVariableName
VariableInstanceQuery orderByVariableName()Order by variable name (needs to be followed byQuery.asc()
orQuery.desc()
). -
orderByVariableType
VariableInstanceQuery orderByVariableType()Order by variable type (needs to be followed byQuery.asc()
orQuery.desc()
). -
orderByActivityInstanceId
VariableInstanceQuery orderByActivityInstanceId()Order by activity instance id (needs to be followed byQuery.asc()
orQuery.desc()
). -
orderByTenantId
VariableInstanceQuery orderByTenantId()Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
). Note that the ordering of variable instances without tenant id is database-specific.
-