Class RootExpression
java.lang.Object
com.aquima.interactions.expressions.optimizer.nodes.RootExpression
- All Implemented Interfaces:
IExpressionNode
,Serializable
This class holds the root expression and any local variable that have been declared.
- Since:
- 7.0
- Author:
- O. Kerpershoek
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionRootExpression
(IExpressionNode expression, LocalVariableExpression... variables) Constructs the root expression with the required arguments. -
Method Summary
Modifier and TypeMethodDescriptionevaluate
(IValueEnvironment environment) This method evaluates the node using the environment passed as argument and returns the result as a value or null if the result is unknown.
-
Constructor Details
-
Method Details
-
evaluate
Description copied from interface:IExpressionNode
This method evaluates the node using the environment passed as argument and returns the result as a value or null if the result is unknown.- Specified by:
evaluate
in interfaceIExpressionNode
- Parameters:
environment
- The environment that should be used when evaluating the node.- Returns:
- The result of the evaluation, or null if the result is unknown.
-