Class UnsignedRightShiftNode

All Implemented Interfaces:
org.plumelib.util.UniqueId

public class UnsignedRightShiftNode extends BinaryOperationNode
A node for bitwise right shift operations with zero extension:
   expression >>> expression
 
  • Constructor Details Link icon

    • UnsignedRightShiftNode Link icon

      public UnsignedRightShiftNode(BinaryTree tree, Node left, Node right)
      Parameters:
      tree - the binary tree
      left - the left operand
      right - the right operand
  • Method Details Link icon

    • accept Link icon

      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 Link icon

      public String toString()
      Overrides:
      toString in class Object
    • equals Link icon

      public boolean equals(@Nullable Object obj)
      Overrides:
      equals in class Object
    • hashCode Link icon

      public int hashCode()
      Overrides:
      hashCode in class Object