Uses of Interface
org.flowable.variable.api.persistence.entity.VariableInstance
-
Uses of VariableInstance in org.flowable.variable.api.delegate
Modifier and TypeMethodDescriptionVariableScope.getVariableInstance
(String variableName) Similar toVariableScope.getVariable(String)
, but returns aVariableInstance
instance, which contains more information than just the value.VariableScope.getVariableInstance
(String variableName, boolean fetchAllVariables) Similar toVariableScope.getVariable(String, boolean)
, but returns an instance ofVariableInstance
, which has some additional information beyond the value.VariableScope.getVariableInstanceLocal
(String variableName) Similar toVariableScope.getVariableLocal(String)
, but returns an instance ofVariableInstance
, which has some additional information beyond the value.VariableScope.getVariableInstanceLocal
(String variableName, boolean fetchAllVariables) Similar toVariableScope.getVariableLocal(String, boolean)
, but returns an instance ofVariableInstance
, which has some additional information beyond the value.Modifier and TypeMethodDescriptionVariableScope.getVariableInstances()
Returns all variables, as instances of theVariableInstance
interface, which gives more information than only the value (type, execution id, etc.)VariableScope.getVariableInstances
(Collection<String> variableNames) Similar toVariableScope.getVariableInstances()
, but limited to only the variables with the provided names.VariableScope.getVariableInstances
(Collection<String> variableNames, boolean fetchAllVariables) Similar toVariableScope.getVariables(Collection, boolean)
but returns the variables as instances of theVariableInstance
interface, which gives more information than only the value (type, execution id, etc.)VariableScope.getVariableInstancesLocal()
Returns the variables local to this scope as instances of theVariableInstance
interface, which provided additional information about the variable.VariableScope.getVariableInstancesLocal
(Collection<String> variableNames) Similar toVariableScope.getVariableInstances(Collection)
, but only for variables local to this scope.VariableScope.getVariableInstancesLocal
(Collection<String> variableNames, boolean fetchAllVariables) Similar toVariableScope.getVariableInstances(Collection, boolean)
, but only for variables local to this scope.