-
- All Superinterfaces:
ExpressionTree
,Tree
public interface BinaryTree extends ExpressionTree
A tree node for a binary expression. UsegetKind
to 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 Summary
Modifier and Type Method Description ExpressionTree
getLeftOperand()
Returns the left (first) operand of the expression.ExpressionTree
getRightOperand()
Returns the right (second) operand of the expression.
-
-
-
Method Detail
-
getLeftOperand
ExpressionTree getLeftOperand()
Returns the left (first) operand of the expression.- Returns:
- the left operand
-
getRightOperand
ExpressionTree getRightOperand()
Returns the right (second) operand of the expression.- Returns:
- the right operand
-
-