public interface VariableScope
Modifier and Type | Method and Description |
---|---|
Object |
getVariable(String variableName) |
Object |
getVariableLocal(String variableName) |
Set<String> |
getVariableNames() |
Set<String> |
getVariableNamesLocal() |
Map<String,Object> |
getVariables() |
Map<String,Object> |
getVariablesLocal() |
boolean |
hasVariable(String variableName) |
boolean |
hasVariableLocal(String variableName) |
boolean |
hasVariables() |
boolean |
hasVariablesLocal() |
void |
removeVariable(String variableName)
Removes the variable and creates a new
HistoricVariableUpdateEntity . |
void |
removeVariableLocal(String variableName)
Removes the local variable and creates a new
HistoricVariableUpdateEntity . |
void |
removeVariables()
Removes the (local) variables and creates a new
HistoricVariableUpdateEntity for each of them. |
void |
removeVariables(Collection<String> variableNames)
Removes the variables and creates a new
HistoricVariableUpdateEntity for each of them. |
void |
removeVariablesLocal()
Removes the (local) variables and creates a new
HistoricVariableUpdateEntity for each of them. |
void |
removeVariablesLocal(Collection<String> variableNames)
Removes the local variables and creates a new
HistoricVariableUpdateEntity for each of them. |
void |
setVariable(String variableName,
Object value) |
void |
setVariableLocal(String variableName,
Object value) |
void |
setVariables(Map<String,? extends Object> variables) |
void |
setVariablesLocal(Map<String,? extends Object> variables) |
boolean hasVariables()
boolean hasVariablesLocal()
boolean hasVariable(String variableName)
boolean hasVariableLocal(String variableName)
void removeVariable(String variableName)
HistoricVariableUpdateEntity
.void removeVariableLocal(String variableName)
HistoricVariableUpdateEntity
.void removeVariables(Collection<String> variableNames)
HistoricVariableUpdateEntity
for each of them.void removeVariablesLocal(Collection<String> variableNames)
HistoricVariableUpdateEntity
for each of them.void removeVariables()
HistoricVariableUpdateEntity
for each of them.void removeVariablesLocal()
HistoricVariableUpdateEntity
for each of them.Copyright © 2015. All rights reserved.