com.sun.source.tree
Interface BinaryTree
- All Superinterfaces:
- ExpressionTree, Tree
public interface BinaryTree
- extends ExpressionTree
A tree node for a binary expression.
Use getKind
to determine the kind of operator.
For example:
leftOperand operator rightOperand
- Since:
- 1.6
- See Also:
- "The Java Language Specification, 3rd ed, sections 15.17 to 15.24"
Nested classes/interfaces inherited from interface com.sun.source.tree.Tree |
Tree.Kind |
getLeftOperand
ExpressionTree getLeftOperand()
getRightOperand
ExpressionTree getRightOperand()
Copyright © 2005, 2013, Oracle and/or its affiliates. All rights reserved.