Package org.camunda.bpm.engine.impl.el
Class FixedValue
- java.lang.Object
-
- org.camunda.bpm.engine.impl.el.FixedValue
-
- All Implemented Interfaces:
Expression
public class FixedValue extends Object implements Expression
Expression that always returns the same value whengetValue
is called. Setting of the value is not supported.- Author:
- Frederik Heremans
-
-
Constructor Summary
Constructors Constructor Description FixedValue(Object value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getExpressionText()
Object
getValue(VariableScope variableScope)
Object
getValue(VariableScope variableScope, BaseDelegateExecution contextExecution)
boolean
isLiteralText()
void
setValue(Object value, VariableScope variableScope)
-
-
-
Constructor Detail
-
FixedValue
public FixedValue(Object value)
-
-
Method Detail
-
getValue
public Object getValue(VariableScope variableScope)
- Specified by:
getValue
in interfaceExpression
-
getValue
public Object getValue(VariableScope variableScope, BaseDelegateExecution contextExecution)
-
setValue
public void setValue(Object value, VariableScope variableScope)
- Specified by:
setValue
in interfaceExpression
-
getExpressionText
public String getExpressionText()
- Specified by:
getExpressionText
in interfaceExpression
-
isLiteralText
public boolean isLiteralText()
- Specified by:
isLiteralText
in interfaceExpression
-
-