com.sun.source.tree
Interface InstanceOfTree

All Superinterfaces:
ExpressionTree, Tree
All Known Implementing Classes:
JCTree.JCInstanceOf

public interface InstanceOfTree
extends ExpressionTree

A tree node for an 'instanceof' expression. For example:

   expression instanceof type
 

Since:
1.6
See Also:
"The Java Language Specification, 3rd ed, section 15.20.2"

Nested Class Summary
 
Nested classes/interfaces inherited from interface com.sun.source.tree.Tree
Tree.Kind
 
Method Summary
 ExpressionTree getExpression()
           
 Tree getType()
           
 
Methods inherited from interface com.sun.source.tree.Tree
accept, getKind
 

Method Detail

getExpression

ExpressionTree getExpression()

getType

Tree getType()