- All Superinterfaces:
- ExpressionTree,- Tree
A tree node for a type cast expression.
 For example:
 
( type ) expression
- See Java Language Specification:
- 
15.16 Cast Expressions
- Since:
- 1.6
- 
Nested Class Summary
- 
Method SummaryModifier and TypeMethodDescriptionReturns the expression being cast.getType()Returns the target type of the cast.
- 
Method Details- 
getTypeTree getType()Returns the target type of the cast.- Returns:
- the cast
 
- 
getExpressionExpressionTree getExpression()Returns the expression being cast.- Returns:
- the expression
 
 
-