Class EmbracedNode

  • All Implemented Interfaces:
    Serializable

    public final class EmbracedNode
    extends CompositeNode
    This class represents another expression enclosed in braces.
    Author:
    Simon Thoresen Hult
    See Also:
    Serialized Form
    • Constructor Detail

      • EmbracedNode

        public EmbracedNode​(ExpressionNode value)
        Creates a new expression node that embraces another.
        Parameters:
        value - The node to embrace.
    • Method Detail

      • getValue

        public ExpressionNode getValue()
        Returns the node enclosed by this
      • toString

        public StringBuilder toString​(StringBuilder string,
                                      SerializationContext context,
                                      Deque<String> path,
                                      CompositeNode parent)
        Description copied from class: ExpressionNode
        Returns a script instance of this based on the supplied script functions.
        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 a root
        Returns:
        the main script, referring to script instances.
      • 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
      • 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