Interface VariableInstanceQuery
- All Superinterfaces:
org.flowable.common.engine.api.query.Query<VariableInstanceQuery,
VariableInstance>
public interface VariableInstanceQuery
extends org.flowable.common.engine.api.query.Query<VariableInstanceQuery,VariableInstance>
Programmatic querying for
VariableInstance
s.- Author:
- Joram Barrez, Tijs Rademakers
-
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 TypeMethodDescriptionOnly select historic process variables which were not set local.Only select historic process variables which were not set task-local.Don't initialize variable values.executionId
(String executionId) Only select historic process variables with the given id.executionIds
(Set<String> executionIds) Only select historic process variables whose id is in the given set of ids.Only select a historic variable with the given id.processInstanceId
(String processInstanceId) Only select historic process variables with the given process instance.Only select historic variables with the given scope id.Only select historic variables with the give scope type.subScopeId
(String subScopeId) Only select historic variables with the given sub scope id.Only select historic process variables with the given task.Only select historic process variables whose id is in the given set of ids.variableName
(String variableName) Only select historic process variables with the given variable name.variableNameLike
(String variableNameLike) Only select historic process variables where the given variable name is like.variableValueEquals
(String variableName, Object variableValue) only select historic process variables with the given name and valuevariableValueLike
(String variableName, String variableValue) only select historic process variables like the given name and valuevariableValueLikeIgnoreCase
(String variableName, String variableValue) only select historic process variables like the given name and value (case insensitive)variableValueNotEquals
(String variableName, Object variableValue) only select historic process 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. -
processInstanceId
Only select historic process variables with the given process instance. -
executionId
Only select historic process variables with the given id. -
executionIds
Only select historic process variables whose id is in the given set of ids. -
taskId
Only select historic process variables with the given task. -
taskIds
Only select historic process variables whose id is in the given set of ids. -
variableName
Only select historic process variables with the given variable name. -
variableNameLike
Only select historic process variables where the given variable name is like. -
excludeTaskVariables
VariableInstanceQuery excludeTaskVariables()Only select historic process variables which were not set task-local. -
excludeVariableInitialization
VariableInstanceQuery excludeVariableInitialization()Don't initialize variable values. This is foremost a way to deal with variable delete queries -
variableValueEquals
only select historic process variables with the given name and value -
variableValueNotEquals
only select historic process variables that don't have the given name and value -
variableValueLike
only select historic process variables like the given name and value -
variableValueLikeIgnoreCase
only select historic process variables like the given name and value (case insensitive) -
scopeId
Only select historic variables with the given scope id. -
subScopeId
Only select historic variables with the given sub scope id. -
scopeType
Only select historic variables with the give scope type. -
excludeLocalVariables
VariableInstanceQuery excludeLocalVariables()Only select historic process variables which were not set local. -
orderByProcessInstanceId
VariableInstanceQuery orderByProcessInstanceId() -
orderByVariableName
VariableInstanceQuery orderByVariableName()
-