Module jdk.compiler

Interface InstanceOfTree

All Superinterfaces:
ExpressionTree, Tree

public interface InstanceOfTree
extends ExpressionTree
A tree node for an instanceof expression. For example:
   expression instanceof type
 
See Java Language Specification:
15.20.2 Type Comparison Operator instanceof
Since:
1.6
  • Nested Class Summary

    Nested classes/interfaces declared in interface com.sun.source.tree.Tree

    Tree.Kind
  • Method Summary

    Modifier and Type Method Description
    ExpressionTree getExpression()
    Returns the expression to be tested.
    Tree getType()
    Returns the type for which to check.

    Methods declared in interface com.sun.source.tree.Tree

    accept, getKind
  • Method Details