Interface InstanceOfTree

All Superinterfaces:
CaseLabelTreePREVIEW, 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.
PatternTreePREVIEW getPattern()
Returns the tested pattern, or null if this instanceof does not use a pattern.
Tree getType()
Returns the type for which to check.

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

accept, getKind

Method Details

getExpression

ExpressionTree getExpression()
Returns the expression to be tested.
Returns:
the expression

getType

Tree getType()
Returns the type for which to check.
Returns:
the type
See Also:

getPattern

PatternTreePREVIEW getPattern()
Returns the tested pattern, or null if this instanceof does not use a pattern.

For instanceof with a pattern, i.e. in the following form:

   expression instanceof type variable name
 
returns the pattern.

For instanceof without a pattern, i.e. in the following form:

   expression instanceof type
 
returns null.
Returns:
the tested pattern, or null if this instanceof does not use a pattern
Since:
16

© 1993, 2021, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/17/docs/api/jdk.compiler/com/sun/source/tree/InstanceOfTree.html