-
- 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:
- 9
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExpressionTree
getLeftOperand()
Returns left hand side (LHS) of this binary expression.ExpressionTree
getRightOperand()
Returns right hand side (RHS) of this binary expression.-
Methods inherited from interface jdk.nashorn.api.tree.Tree
accept, getEndPosition, getKind, getStartPosition
-
-
-
-
Method Detail
-
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
-
-