ExpressionTree, Treepublic interface InstanceOfTree extends ExpressionTree
instanceof expression. For example: expression instanceof type expression instanceof pattern
| Modifier and Type | Method | Description |
|---|---|---|
ExpressionTree |
getExpression() |
Returns the expression to be tested. |
PatternTree |
getPattern() |
Returns the tested pattern, or null if this instanceof does not use a pattern. |
Tree |
getType() |
Returns the type for which to check, or null if this instanceof uses a pattern other the BindingPatternTree. |
ExpressionTree getExpression()
Tree getType()
null if this instanceof uses a pattern other the BindingPatternTree. For instanceof without a pattern, i.e. in the following form:
expression instanceof typereturns the type.
For instanceof with a BindingPatternTree, i.e. in the following form:
expression instanceof type variable_namereturns the type.
For instanceof with a pattern, i.e. in the following form:
expression instanceof patternreturns
null.null if this instanceof uses a pattern other than the BindingPatternTree
PatternTree getPattern()
null if this instanceof does not use a pattern. For instanceof with a pattern, i.e. in the following form:
expression instanceof patternreturns the pattern.
For instanceof without a pattern, i.e. in the following form:
expression instanceof typereturns
null.null if this instanceof does not use a pattern
© 1993, 2025, 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/25/docs/api/jdk.compiler/com/sun/source/tree/InstanceOfTree.html