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 String
getExpressionText()
Object
getValue(VariableScope variableScope)
boolean
isLiteralText()
void
setValue(Object value, VariableScope variableScope)
-
-
-
Method Detail
-
getValue
Object getValue(VariableScope variableScope)
-
setValue
void setValue(Object value, VariableScope variableScope)
-
getExpressionText
String getExpressionText()
-
isLiteralText
boolean isLiteralText()
-
-