Interface BinaryTree
- All Superinterfaces:
ExpressionTree, Tree
A tree node for a binary expression.
Use
getKind to determine the kind of operator.
For example:
leftOperand operator rightOperand
- Since:
- 9
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturns left hand side (LHS) of this binary expression.Returns right hand side (RHS) of this binary expression.Methods inherited from interface Tree
accept, getEndPosition, getKind, getStartPosition
-
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
-