Class OperationNode
java.lang.Object
com.yahoo.searchlib.rankingexpression.rule.ExpressionNode
com.yahoo.searchlib.rankingexpression.rule.CompositeNode
com.yahoo.searchlib.rankingexpression.rule.OperationNode
- All Implemented Interfaces:
Serializable
A sequence of binary operations.
- Author:
- bratseth
- See Also:
-
Constructor Summary
ConstructorDescriptionOperationNode
(ExpressionNode leftExpression, Operator operator, ExpressionNode rightExpression) OperationNode
(List<ExpressionNode> children, List<Operator> operators) -
Method Summary
Modifier and TypeMethodDescriptionchildren()
Returns a read-only list containing the immediate children of this composite.Returns the value of evaluating this expression over the given context.int
hashCode()
Returns a hashcode computed from the data in thisstatic OperationNode
resolve
(ExpressionNode left, Operator op, ExpressionNode right) setChildren
(List<ExpressionNode> newChildren) Returns a copy of this where the children is replaced by the given children.toString
(StringBuilder string, SerializationContext context, Deque<String> path, CompositeNode parent) Returns this in serialized form.com.yahoo.tensor.TensorType
Returns the type this will return if evaluated with the given context.Methods inherited from class com.yahoo.searchlib.rankingexpression.rule.ExpressionNode
equals, toString, toString
-
Constructor Details
-
OperationNode
-
OperationNode
public OperationNode(ExpressionNode leftExpression, Operator operator, ExpressionNode rightExpression)
-
-
Method Details
-
operators
-
children
Description copied from class:CompositeNode
Returns a read-only list containing the immediate children of this composite.- Specified by:
children
in classCompositeNode
- Returns:
- The children of this.
-
toString
public StringBuilder toString(StringBuilder string, SerializationContext context, Deque<String> path, CompositeNode parent) Description copied from class:ExpressionNode
Returns this in serialized form.- Specified by:
toString
in classExpressionNode
- Parameters:
string
- the StringBuilder that will be appended tocontext
- the serialization contextpath
- the call path to this, used for cycle detection, or null if this is a rootparent
- the parent node of this, or null if it is a root- Returns:
- the main script, referring to script instances.
-
type
Description copied from class:ExpressionNode
Returns the type this will return if evaluated with the given context.- Specified by:
type
in classExpressionNode
- Parameters:
context
- the variable type bindings to use for this evaluation
-
evaluate
Description copied from class:ExpressionNode
Returns the value of evaluating this expression over the given context.- Specified by:
evaluate
in classExpressionNode
- Parameters:
context
- the variable bindings to use for this evaluation
-
setChildren
Description copied from class:CompositeNode
Returns a copy of this where the children is replaced by the given children.- Specified by:
setChildren
in classCompositeNode
-
hashCode
public int hashCode()Description copied from class:ExpressionNode
Returns a hashcode computed from the data in this- Specified by:
hashCode
in classExpressionNode
-
resolve
-