- 
- All Superinterfaces:
- ExpressionTree,- Tree
 
 public interface BinaryTree extends ExpressionTree A tree node for a binary expression. UsegetKindto determine the kind of operator. For example:leftOperand operator rightOperand - Since:
- 1.6
- See The Java™ Language Specification:
- sections 15.17 to 15.24
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description ExpressionTreegetLeftOperand()Returns the left (first) operand of the expression.ExpressionTreegetRightOperand()Returns the right (second) operand of the expression.
 
- 
- 
- 
Method Detail- 
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
 
 
- 
 
-