-
- All Superinterfaces:
- ReferenceType, TypeMirror
- All Known Subinterfaces:
- ErrorType
public interface DeclaredType extends ReferenceType
Represents a declared type, either a class type or an interface type. This includes parameterized types such asjava.util.Set<String>
as well as raw types.While a
TypeElement
represents a class or interface element, aDeclaredType
represents a class or interface type, the latter being a use (or invocation) of the former. SeeTypeElement
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 aDeclaredType
withNumber
as its superclass andRunnable
as its lone superinterface.- Since:
- 1.6
- See Also:
TypeElement
-
-
Method Summary
Methods Modifier and Type Method and Description Element
asElement()
Returns the element corresponding to this type.TypeMirror
getEnclosingType()
Returns the type of the innermost enclosing instance or aNoType
of kindNONE
if there is no enclosing instance.List<? extends TypeMirror>
getTypeArguments()
Returns the actual type arguments of this type.
-
-
-
Method Detail
-
asElement
Element asElement()
Returns the element corresponding to this type.- Returns:
- the element corresponding to this type
-
getEnclosingType
TypeMirror getEnclosingType()
Returns the type of the innermost enclosing instance or aNoType
of kindNONE
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 The Java™ Language Specification:
- 8.1.3 Inner Classes and Enclosing Instances, 15.9.2 Determining Enclosing Instances
-
getTypeArguments
List<? extends TypeMirror> getTypeArguments()
Returns the actual type arguments of this type. For a type nested within a parameterized type (such asOuter<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
-
-
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 11/06/2005, zuletzt geändert 04/03/2020
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/java-api-rf-javax/lang/model/type/DeclaredType.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.
Referenzen
Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.