-
- All Superinterfaces:
ExpressionTree
,Tree
public interface InstanceOfTree extends ExpressionTree
A tree node for aninstanceof
expression. For example:expression instanceof type
- Since:
- 1.6
- See The Java™ Language Specification:
- section 15.20.2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExpressionTree
getExpression()
Returns the expression to be tested.Tree
getType()
Returns the type for which to check.
-
-
-
Method Detail
-
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
-
-