java.lang.Object
com.yahoo.searchlib.rankingexpression.rule.ExpressionNode
com.yahoo.searchlib.rankingexpression.rule.NameNode
All Implemented Interfaces:
Serializable

public final class NameNode extends ExpressionNode
An opaque name in a ranking expression. This is used to represent names passed to the context and interpreted by the given context in a way which is opaque to the ranking expressions.
Author:
Simon Thoresen Hult
See Also:
  • Constructor Details

    • NameNode

      public NameNode(String name)
  • Method Details

    • getValue

      public String getValue()
    • 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 class ExpressionNode
      Parameters:
      string - the StringBuilder that will be appended to
      context - the serialization context
      path - the call path to this, used for cycle detection, or null if this is a root
      parent - the parent node of this, or null if it is a root
      Returns:
      the main script, referring to script instances.
    • type

      public com.yahoo.tensor.TensorType type(com.yahoo.tensor.evaluation.TypeContext<Reference> context)
      Description copied from class: ExpressionNode
      Returns the type this will return if evaluated with the given context.
      Specified by:
      type in class ExpressionNode
      Parameters:
      context - the variable type bindings to use for this evaluation
    • evaluate

      public Value evaluate(Context context)
      Description copied from class: ExpressionNode
      Returns the value of evaluating this expression over the given context.
      Specified by:
      evaluate in class ExpressionNode
      Parameters:
      context - the variable bindings to use for this evaluation
    • hashCode

      public int hashCode()
      Description copied from class: ExpressionNode
      Returns a hashcode computed from the data in this
      Specified by:
      hashCode in class ExpressionNode