- 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
- 
Nested Class Summary
- 
Method SummaryModifier and Type Method Description ExpressionTreegetLeftOperand()Returns the left (first) operand of the expression.ExpressionTreegetRightOperand()Returns the right (second) operand of the expression.
- 
Method Details- 
getLeftOperandExpressionTree getLeftOperand()Returns the left (first) operand of the expression.- Returns:
- the left operand
 
- 
getRightOperandExpressionTree getRightOperand()Returns the right (second) operand of the expression.- Returns:
- the right operand
 
 
-