- 
- All Superinterfaces:
- ExpressionTree,- Tree
 
 public interface TypeCastTree extends ExpressionTree A tree node for a type cast expression. For example:( type ) expression - Since:
- 1.6
- See The Java™ Language Specification:
- section 15.16
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description ExpressionTreegetExpression()Returns the expression being cast.TreegetType()Returns the target type of the cast.
 
- 
- 
- 
Method Detail- 
getTypeTree getType() Returns the target type of the cast.- Returns:
- the cast
 
 - 
getExpressionExpressionTree getExpression() Returns the expression being cast.- Returns:
- the expression
 
 
- 
 
-