Class TypeDescription.Generic.OfParameterizedType.Latent

    • Field Detail

      • rawType

        private final TypeDescription rawType
        The raw type of the described parameterized type.
      • ownerType

        private final TypeDescription.Generic ownerType
        This parameterized type's owner type or null if no owner type exists.
      • parameters

        private final java.util.List<? extends TypeDescription.Generic> parameters
        The parameters of this parameterized type.
      • annotationSource

        private final AnnotationSource annotationSource
        The annotation source to query for the declared annotations.
    • Constructor Detail

      • Latent

        public Latent​(TypeDescription rawType,
                      TypeDescription.Generic ownerType,
                      java.util.List<? extends TypeDescription.Generic> parameters,
                      AnnotationSource annotationSource)
        Creates a description of a latent parameterized type.
        Parameters:
        rawType - The raw type of the described parameterized type.
        ownerType - This parameterized type's owner type or null if no owner type exists.
        parameters - The parameters of this parameterized type.
        annotationSource - The annotation source to query for the declared annotations.
    • Method Detail

      • asErasure

        public TypeDescription asErasure()
        Returns the erasure of this type. Wildcard types (TypeDefinition.Sort.WILDCARD) do not have a well-defined erasure and cause an IllegalStateException to be thrown.
        Returns:
        The erasure of this type.
      • getOwnerType

        public TypeDescription.Generic getOwnerType()

        Returns the owner type of this type. A type's owner type describes a nested type's declaring type. If it exists, the returned type can be a non-generic or parameterized type. If a class has no declaring type, null is returned.

        An owner type is only well-defined for parameterized types (TypeDefinition.Sort.PARAMETERIZED), for non-generic types (TypeDefinition.Sort.NON_GENERIC) and for generic arrays (TypeDefinition.Sort.GENERIC_ARRAY). For all other types, this method throws an IllegalStateException.

        Returns:
        This type's owner type or null if no owner type exists.
      • getTypeArguments

        public TypeList.Generic getTypeArguments()

        Returns the type arguments of this type.

        Parameters are only well-defined for parameterized types (TypeDefinition.Sort.PARAMETERIZED). For all other types, this method throws an IllegalStateException.

        Returns:
        A list of this type's type parameters.
      • getDeclaredAnnotations

        public AnnotationList getDeclaredAnnotations()
        Returns a list of annotations that are declared by this instance.
        Returns:
        A list of declared annotations.