| 
 | Java™ Platform Standard Ed. 6 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface DeclaredType
Represents a declared type, either a class type or an interface type.
 This includes parameterized types such as java.util.Set<String>
 as well as raw types.
 
 While a TypeElement represents a class or interface
 element, a DeclaredType represents a class
 or interface type, the latter being a use
 (or invocation) of the former.
 See TypeElement for more on this distinction.
 
 The supertypes (both class and interface types) of a declared
 type may be found using the Types.directSupertypes(TypeMirror) method.  This returns the
 supertypes with any type arguments substituted in.
 
 This interface is also used to represent intersection types.
 An intersection type is implicit in a program rather than being
 explictly declared.  For example, the bound of the type parameter
 <T extends Number & Runnable>
 is an intersection type.  It is represented by a DeclaredType
 with Number as its superclass and Runnable as its
 lone superinterface.
TypeElement| Method Summary | |
|---|---|
|  Element | asElement()Returns the element corresponding to this type. | 
|  TypeMirror | getEnclosingType()Returns the type of the innermost enclosing instance or a NoTypeof kindNONEif there is no enclosing
 instance. | 
|  List<? extends TypeMirror> | getTypeArguments()Returns the actual type arguments of this type. | 
| Methods inherited from interface javax.lang.model.type.TypeMirror | 
|---|
| accept, equals, getKind, hashCode, toString | 
| Method Detail | 
|---|
Element asElement()
TypeMirror getEnclosingType()
NoType of kind NONE if there is no enclosing
 instance.  Only types corresponding to inner classes have an
 enclosing instance.
List<? extends TypeMirror> getTypeArguments()
Outer<String>.Inner<Number>), only the type
 arguments of the innermost type are included.
| 
 | Java™ Platform Standard Ed. 6 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
Copyright © 1993, 2010, Oracle and/or its affiliates. All rights reserved.