Package org.camunda.bpm.engine.delegate
Interface Expression
-
- All Known Subinterfaces:
Expression
- All Known Implementing Classes:
FixedValue,JuelExpression
public interface Expression- Author:
- Frederik Heremans
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetExpressionText()java.lang.ObjectgetValue(VariableScope variableScope)booleanisLiteralText()voidsetValue(java.lang.Object value, VariableScope variableScope)
-
-
-
Method Detail
-
getValue
java.lang.Object getValue(VariableScope variableScope)
-
setValue
void setValue(java.lang.Object value, VariableScope variableScope)
-
getExpressionText
java.lang.String getExpressionText()
-
isLiteralText
boolean isLiteralText()
-
-