Class EachExpression
java.lang.Object
com.aquima.interactions.expressions.optimizer.nodes.EachExpression
- All Implemented Interfaces:
IExpressionNode
,Serializable
The each expression can be used to check if all of the selected values matches the condition.
- Since:
- 6.4
- Author:
- O. Kerpershoek
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionEachExpression
(IExpressionNode fromExpr, Identifier alias, IExpressionNode whereExpr) Constructs the each 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.protected Identifier
getAlias()
protected IExpressionNode
protected IExpressionNode
toString()
-
Constructor Details
-
Method Details
-
getAlias
-
getFromExpr
-
getWhereExpr
-
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.
-
toString
-