Class NamedVariableExpression
- java.lang.Object
-
- com.aquima.interactions.expressions.optimizer.nodes.NamedVariableExpression
-
- All Implemented Interfaces:
IExpressionNode
,Serializable
public class NamedVariableExpression extends Object implements IExpressionNode
A named expression is used to select a single (static) instance by name.- Since:
- 6.4
- Author:
- O. Kerpershoek
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NamedVariableExpression(Identifier typeName, Identifier instanceName)
Constructs the named variable with the name and type.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IValue
evaluate(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.String
toString()
-
-
-
Constructor Detail
-
NamedVariableExpression
public NamedVariableExpression(Identifier typeName, Identifier instanceName)
Constructs the named variable with the name and type.- Parameters:
typeName
- The type of the entity instance that is referred to.instanceName
- The name of the entity instance that is referred to.
-
-
Method Detail
-
evaluate
public IValue evaluate(IValueEnvironment environment)
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.
-
-