Package org.flowable.cmmn.api.runtime
Interface VariableInstanceQuery
- All Superinterfaces:
org.flowable.common.engine.api.query.Query<VariableInstanceQuery,
org.flowable.variable.api.persistence.entity.VariableInstance>
public interface VariableInstanceQuery
extends org.flowable.common.engine.api.query.Query<VariableInstanceQuery,org.flowable.variable.api.persistence.entity.VariableInstance>
- Author:
- Joram Barrez
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.flowable.common.engine.api.query.Query
org.flowable.common.engine.api.query.Query.NullHandlingOnOrder
-
Method Summary
Modifier and TypeMethodDescriptioncaseInstanceId
(String caseInstanceId) Only select historic variables with the given case instance.Only select historic process variables which were not set local.Only select historic variables which were not set task-local.Don't initialize variable values.Only select a historic variable with the given id.order historic variables by the name.planItemInstanceId
(String planItemInstanceId) Only select historic variables with the given plan item instance id.Only select historic variables with the given task.Only select historic variables whose id is in the given set of ids.variableName
(String variableName) Only select historic variables with the given variable name.variableNameLike
(String variableNameLike) Only select historic variables where the given variable name is like.variableValueEquals
(String variableName, Object variableValue) only select historic variables with the given name and valuevariableValueLike
(String variableName, String variableValue) only select historic variables like the given name and valuevariableValueLikeIgnoreCase
(String variableName, String variableValue) only select historic variables like the given name and value (case insensitive)variableValueNotEquals
(String variableName, Object variableValue) only select historic variables that don't have the given name and valueMethods inherited from interface org.flowable.common.engine.api.query.Query
asc, count, desc, list, listPage, orderBy, orderBy, singleResult
-
Method Details
-
id
Only select a historic variable with the given id. -
caseInstanceId
Only select historic variables with the given case instance. -
planItemInstanceId
Only select historic variables with the given plan item instance id. -
taskId
Only select historic variables with the given task. -
taskIds
Only select historic variables whose id is in the given set of ids. -
variableName
Only select historic variables with the given variable name. -
variableNameLike
Only select historic variables where the given variable name is like. -
excludeTaskVariables
VariableInstanceQuery excludeTaskVariables()Only select historic variables which were not set task-local. -
excludeLocalVariables
VariableInstanceQuery excludeLocalVariables()Only select historic process variables which were not set local. -
excludeVariableInitialization
VariableInstanceQuery excludeVariableInitialization()Don't initialize variable values. This is foremost a way to deal with variable delete queries -
variableValueEquals
only select historic variables with the given name and value -
variableValueNotEquals
only select historic variables that don't have the given name and value -
variableValueLike
only select historic variables like the given name and value -
variableValueLikeIgnoreCase
only select historic variables like the given name and value (case insensitive) -
orderByVariableName
VariableInstanceQuery orderByVariableName()order historic variables by the name. Use asc() or desc() afterwards.
-