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.String
getExpressionText()
java.lang.Object
getValue(VariableScope variableScope)
boolean
isLiteralText()
void
setValue(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()
-
-