Interface DeclaredType
- All Superinterfaces:
-
AnnotatedConstruct
,ReferenceType
,TypeMirror
- All Known Subinterfaces:
ErrorType
public interface DeclaredType extends ReferenceType
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.
- Since:
- 1.6
- See Also:
Method Summary
Modifier and Type | Method | Description |
---|---|---|
Element |
asElement() |
Returns the element corresponding to this type. |
TypeMirror |
getEnclosingType() |
Returns the type of the innermost enclosing instance or a NoType of kind NONE if there is no enclosing instance. |
List<? extends TypeMirror> |
getTypeArguments() |
Returns the actual type arguments of this type. |
Methods declared in interface javax.lang.model.type.TypeMirror
accept, equals, getAnnotation, getAnnotationMirrors, getAnnotationsByType, getKind, hashCode, toString
Method Details
asElement
Element asElement()
- Returns:
- the element corresponding to this type
getEnclosingType
TypeMirror getEnclosingType()
NoType
of kind NONE
if there is no enclosing instance. Only types corresponding to inner classes have an enclosing instance.- Returns:
- a type mirror for the enclosing type
- See Java Language Specification:
- 8.1.3 Inner Classes and Enclosing Instances
15.9.2 Determining Enclosing Instances
getTypeArguments
List<? extends TypeMirror> getTypeArguments()
Outer<String>.Inner<Number>
), only the type arguments of the innermost type are included.- Returns:
- the actual type arguments of this type, or an empty list if none
© 1993, 2021, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/17/docs/api/java.compiler/javax/lang/model/type/DeclaredType.html