Class FixedValue
- java.lang.Object
-
- org.flowable.common.engine.impl.el.FixedValue
-
- All Implemented Interfaces:
Serializable,Expression
public class FixedValue extends Object implements Expression
Expression that always returns the same value whengetValueis called. Setting of the value is not supported.- Author:
- Frederik Heremans
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FixedValue(Object value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetExpressionText()ObjectgetValue(VariableContainer variableContainer)voidsetValue(Object value, VariableContainer variableContainer)
-
-
-
Constructor Detail
-
FixedValue
public FixedValue(Object value)
-
-
Method Detail
-
getValue
public Object getValue(VariableContainer variableContainer)
- Specified by:
getValuein interfaceExpression
-
setValue
public void setValue(Object value, VariableContainer variableContainer)
- Specified by:
setValuein interfaceExpression
-
getExpressionText
public String getExpressionText()
- Specified by:
getExpressionTextin interfaceExpression
-
-