Package io.dialob.program.expr.arith
Interface ConditionalListOperator<T>
-
- All Superinterfaces:
Expression,Serializable
- All Known Subinterfaces:
AvailableItemsListOperator
- All Known Implementing Classes:
ImmutableConditionalListOperator
@Immutable public interface ConditionalListOperator<T> extends Expression
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default Objecteval(EvalContext evalContext)default Set<EventMatcher>getEvalRequiredConditions()List<Pair<Expression,T>>getItems()default ValueTypegetValueType()
-
-
-
Method Detail
-
getItems
List<Pair<Expression,T>> getItems()
-
eval
default Object eval(@Nonnull EvalContext evalContext)
- Specified by:
evalin interfaceExpression
-
getValueType
@Nonnull default ValueType getValueType()
- Specified by:
getValueTypein interfaceExpression
-
getEvalRequiredConditions
@Nonnull default Set<EventMatcher> getEvalRequiredConditions()
- Specified by:
getEvalRequiredConditionsin interfaceExpression
-
-