Package io.dialob.program.expr.arith
Interface FormatOperator
-
- All Superinterfaces:
Expression,Serializable
- All Known Implementing Classes:
ImmutableFormatOperator
@Immutable public interface FormatOperator extends Expression
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default Stringeval(EvalContext context)default Set<EventMatcher>getEvalRequiredConditions()ExpressiongetExpression()StringgetFormat()default ValueTypegetValueType()
-
-
-
Method Detail
-
getExpression
@Parameter Expression getExpression()
-
getFormat
@Parameter String getFormat()
-
eval
default String eval(@Nonnull EvalContext context)
- Specified by:
evalin interfaceExpression
-
getValueType
@Nonnull default ValueType getValueType()
- Specified by:
getValueTypein interfaceExpression
-
getEvalRequiredConditions
@Nonnull default Set<EventMatcher> getEvalRequiredConditions()
- Specified by:
getEvalRequiredConditionsin interfaceExpression
-
-