| Package | Description |
|---|---|
| org.flowable.variable.api.delegate |
| Modifier and Type | Method and Description |
|---|---|
VariableInstance |
VariableScope.getVariableInstance(String variableName)
Similar to
VariableScope.getVariable(String), but returns a VariableInstance instance, which contains more information than just the value. |
VariableInstance |
VariableScope.getVariableInstance(String variableName,
boolean fetchAllVariables)
Similar to
VariableScope.getVariable(String, boolean), but returns an instance of VariableInstance, which has some additional information beyond the value. |
VariableInstance |
VariableScope.getVariableInstanceLocal(String variableName)
Similar to
VariableScope.getVariableLocal(String), but returns an instance of VariableInstance, which has some additional information beyond the value. |
VariableInstance |
VariableScope.getVariableInstanceLocal(String variableName,
boolean fetchAllVariables)
Similar to
VariableScope.getVariableLocal(String, boolean), but returns an instance of VariableInstance, which has some additional information beyond the value. |
| Modifier and Type | Method and Description |
|---|---|
Map<String,VariableInstance> |
VariableScope.getVariableInstances()
Returns all variables, as instances of the
VariableInstance interface, which gives more information than only the value (type, execution id, etc.) |
Map<String,VariableInstance> |
VariableScope.getVariableInstances(Collection<String> variableNames)
Similar to
VariableScope.getVariableInstances(), but limited to only the variables with the provided names. |
Map<String,VariableInstance> |
VariableScope.getVariableInstances(Collection<String> variableNames,
boolean fetchAllVariables)
Similar to
VariableScope.getVariables(Collection, boolean) but returns the variables as instances of the VariableInstance interface, which gives more information than only the value
(type, execution id, etc.) |
Map<String,VariableInstance> |
VariableScope.getVariableInstancesLocal()
Returns the variables local to this scope as instances of the
VariableInstance interface, which provided additional information about the variable. |
Map<String,VariableInstance> |
VariableScope.getVariableInstancesLocal(Collection<String> variableNames)
Similar to
VariableScope.getVariableInstances(Collection), but only for variables local to this scope. |
Map<String,VariableInstance> |
VariableScope.getVariableInstancesLocal(Collection<String> variableNames,
boolean fetchAllVariables)
Similar to
VariableScope.getVariableInstances(Collection, boolean), but only for variables local to this scope. |
Copyright © 2020 Flowable. All rights reserved.