- 
- 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:
 - 9
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExpressionTreegetLeftOperand()Returns left hand side (LHS) of this binary expression.ExpressionTreegetRightOperand()Returns right hand side (RHS) of this binary expression.- 
Methods declared in 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
 
 
 - 
 
 -