Package org.flowable.cmmn.api.history
Interface HistoricVariableInstanceQuery
- All Superinterfaces:
org.flowable.common.engine.api.query.Query<HistoricVariableInstanceQuery,
org.flowable.variable.api.history.HistoricVariableInstance>
public interface HistoricVariableInstanceQuery
extends org.flowable.common.engine.api.query.Query<HistoricVariableInstanceQuery,org.flowable.variable.api.history.HistoricVariableInstance>
- 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
HistoricVariableInstanceQuery excludeTaskVariables()Only select historic variables which were not set task-local. -
excludeLocalVariables
HistoricVariableInstanceQuery excludeLocalVariables()Only select historic process variables which were not set local. -
excludeVariableInitialization
HistoricVariableInstanceQuery 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
HistoricVariableInstanceQuery variableValueLikeIgnoreCase(String variableName, String variableValue) only select historic variables like the given name and value (case insensitive) -
orderByVariableName
HistoricVariableInstanceQuery orderByVariableName()order historic variables by the name. Use asc() or desc() afterwards.
-