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