- All Superinterfaces:
ExpressionTree
,Tree
A tree node for a binary expression.
Use
getKind
to determine the kind of operator.
For example:
leftOperand operator rightOperand
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturns the left (first) operand of the expression.Returns the right (second) operand of the expression.
-
Method Details
-
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
-