Class LessThanOrEqualNode

  • All Implemented Interfaces:
    org.plumelib.util.UniqueId

    public class LessThanOrEqualNode
    extends BinaryOperationNode
    A node for the less than or equal comparison:
       expression <= expression
     
    • Constructor Detail

      • LessThanOrEqualNode

        public LessThanOrEqualNode​(com.sun.source.tree.BinaryTree tree,
                                   Node left,
                                   Node right)
        Constructs a LessThanOrEqualNode.
        Parameters:
        tree - the binary tree
        left - the left operand
        right - the right operand
    • Method Detail

      • accept

        public <R,​P> R accept​(NodeVisitor<R,​P> visitor,
                                    P p)
        Description copied from class: Node
        Accept method of the visitor pattern.
        Specified by:
        accept in class Node
        Type Parameters:
        R - result type of the operation
        P - parameter type
        Parameters:
        visitor - the visitor to be applied to this node
        p - the parameter for this operation
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • equals

        public boolean equals​(@Nullable java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object