Package org.activiti.engine.history
Interface HistoricVariableInstanceQuery
- All Superinterfaces:
Query<HistoricVariableInstanceQuery,HistoricVariableInstance>
- All Known Implementing Classes:
HistoricVariableInstanceQueryImpl
@Internal
public interface HistoricVariableInstanceQuery
extends Query<HistoricVariableInstanceQuery,HistoricVariableInstance>
Programmatic querying for
HistoricVariableInstances.-
Method Summary
Modifier and TypeMethodDescriptionOnly 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 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 value
-
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
HistoricVariableInstanceQuery excludeTaskVariables()Only select historic process variables which were not set task-local. -
excludeVariableInitialization
HistoricVariableInstanceQuery 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
HistoricVariableInstanceQuery variableValueLikeIgnoreCase(String variableName, String variableValue) only select historic process variables like the given name and value (case insensitive) -
orderByProcessInstanceId
HistoricVariableInstanceQuery orderByProcessInstanceId() -
orderByVariableName
HistoricVariableInstanceQuery orderByVariableName()
-