Uses of Class
org.jboss.jandex.WildcardType
Packages that use WildcardType
Package
Description
Jandex is a space efficient Java class file indexer and offline reflection library.
-
Uses of WildcardType in org.jboss.jandex
Fields in org.jboss.jandex declared as WildcardTypeModifier and TypeFieldDescriptionstatic final WildcardType
WildcardType.UNBOUNDED
A wildcard without a bound, an equivalent of?
.private static final WildcardType
GenericSignatureParser.UNBOUNDED_WILDCARD
Methods in org.jboss.jandex that return WildcardTypeModifier and TypeMethodDescriptionType.asWildcardType()
Casts this type to aWildcardType
and returns it if the kind isType.Kind.WILDCARD_TYPE
.WildcardType.asWildcardType()
WildcardType.Builder.build()
Returns the built wildcard type.static WildcardType
Deprecated.static WildcardType
WildcardType.createLowerBound
(Class<?> lowerBound) Create a new wildcard type with a lower (super
) bound.static WildcardType
WildcardType.createLowerBound
(Type lowerBound) Create a new wildcard type with a lower (super
) bound.static WildcardType
WildcardType.createUpperBound
(Class<?> upperBound) Create a new wildcard type with an upper (extends
) bound.static WildcardType
WildcardType.createUpperBound
(Type upperBound) Create a new wildcard type with an upper (extends
) bound.
createUpperBound(Type)
orcreateLowerBound(Type)
instead