Uses of Class
org.jboss.jandex.WildcardType
-
Packages that use WildcardType Package Description org.jboss.jandex 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 WildcardType Modifier and Type Field Description static WildcardType
WildcardType. UNBOUNDED
A wildcard without a bound, an equivalent of?
.private static WildcardType
GenericSignatureParser. UNBOUNDED_WILDCARD
Methods in org.jboss.jandex that return WildcardType Modifier and Type Method Description WildcardType
Type. asWildcardType()
Casts this type to aWildcardType
and returns it if the kind isType.Kind.WILDCARD_TYPE
.WildcardType
WildcardType. asWildcardType()
WildcardType
WildcardType.Builder. build()
Returns the built wildcard type.static WildcardType
WildcardType. create(Type bound, boolean isExtends)
Deprecated.usecreateUpperBound(Type)
orcreateLowerBound(Type)
insteadstatic WildcardType
WildcardType. createLowerBound(java.lang.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(java.lang.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.
-