Compiler Tree API

com.sun.source.tree
Interface TypeCastTree

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 Also:
"The Java Language Specification, 3rd ed, section 15.16"

Nested Class Summary
 
Nested classes/interfaces inherited from interface com.sun.source.tree.Tree
Tree.Kind
 
Method Summary
 ExpressionTree getExpression()
           
 Tree getType()
           
 
Methods inherited from interface com.sun.source.tree.Tree
accept, getKind
 

Method Detail

getType

Tree getType()

getExpression

ExpressionTree getExpression()

Compiler Tree API

Submit a bug or feature
Copyright © 2005, 2015, Oracle and/or its affiliates. All rights reserved.