javax.lang.model.type

Interface DeclaredType

  • 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 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.

    Since:
    1.6
    See Also:
    TypeElement
    • 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 a 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 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 as 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

Document created the 11/06/2005, last modified the 04/03/2020
Source of the printed document:https://www.gaudry.be/en/java-api-rf-javax/lang/model/type/declaredtype.html

The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.

References

  1. View the html document Language of the document:fr Manuel PHP : https://docs.oracle.com

These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.

Contents Haut