Package io.dialob.program.expr.arith
Interface ConcatOperator
-
- All Superinterfaces:
Expression,Serializable
- All Known Implementing Classes:
ImmutableConcatOperator
@Immutable public interface ConcatOperator 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()List<Expression>getExpressions()default ValueTypegetValueType()
-
-
-
Method Detail
-
getExpressions
List<Expression> getExpressions()
-
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
-
-