Class FunctionNode
java.lang.Object
com.yahoo.searchlib.rankingexpression.rule.ExpressionNode
com.yahoo.searchlib.rankingexpression.rule.CompositeNode
com.yahoo.searchlib.rankingexpression.rule.FunctionNode
- All Implemented Interfaces:
Serializable
Invocation of a native function.
- Author:
- Simon Thoresen Hult, bratseth
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionFunctionNode(Function function, ExpressionNode argument) FunctionNode(Function function, ExpressionNode argument1, ExpressionNode argument2) Creates a binary function node -
Method Summary
Modifier and TypeMethodDescriptionchildren()Returns the arguments of thisReturns the value of evaluating this expression over the given context.inthashCode()Returns a hashcode computed from the data in thissetChildren(List<ExpressionNode> children) Returns a new function node with the children replaced by the given childrentoString(StringBuilder b, SerializationContext context, Deque<String> path, CompositeNode parent) Returns this in serialized form.com.yahoo.tensor.TensorTypeReturns 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
-
FunctionNode
-
FunctionNode
Creates a binary function node
-
-
Method Details
-
getFunction
-
children
Returns the arguments of this- Specified by:
childrenin classCompositeNode- Returns:
- The children of this.
-
toString
public StringBuilder toString(StringBuilder b, SerializationContext context, Deque<String> path, CompositeNode parent) Description copied from class:ExpressionNodeReturns this in serialized form.- Specified by:
toStringin classExpressionNode- Parameters:
b- 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:ExpressionNodeReturns the type this will return if evaluated with the given context.- Specified by:
typein classExpressionNode- Parameters:
context- the variable type bindings to use for this evaluation
-
evaluate
Description copied from class:ExpressionNodeReturns the value of evaluating this expression over the given context.- Specified by:
evaluatein classExpressionNode- Parameters:
context- the variable bindings to use for this evaluation
-
setChildren
Returns a new function node with the children replaced by the given children- Specified by:
setChildrenin classCompositeNode
-
hashCode
public int hashCode()Description copied from class:ExpressionNodeReturns a hashcode computed from the data in this- Specified by:
hashCodein classExpressionNode
-