Interface BinaryTree

All Superinterfaces:
ExpressionTree, Tree

public interface BinaryTree extends ExpressionTree
A tree node for a binary expression. Use getKind to determine the kind of operator. For example:
   leftOperand operator rightOperand
 
Since:
9
  • Method Details

    • getLeftOperand

      ExpressionTree getLeftOperand()
      Returns left hand side (LHS) of this binary expression.
      Returns:
      left hand side (LHS) of this binary expression
    • getRightOperand

      ExpressionTree getRightOperand()
      Returns right hand side (RHS) of this binary expression.
      Returns:
      right hand side (RHS) of this binary expression