Uses of Class
org.jboss.jandex.ClassType
-
Packages that use ClassType Package Description org.jboss.jandex Jandex is a space efficient Java class file indexer and offline reflection library. -
-
Uses of ClassType in org.jboss.jandex
Fields in org.jboss.jandex declared as ClassType Modifier and Type Field Description static ClassType
ClassType. BOOLEAN_CLASS
static ClassType
ClassType. BYTE_CLASS
static ClassType
ClassType. CHARACTER_CLASS
static ClassType
ClassType. DOUBLE_CLASS
static ClassType
ClassType. FLOAT_CLASS
static ClassType
ClassType. INTEGER_CLASS
static ClassType
ClassType. LONG_CLASS
static ClassType
ClassType. OBJECT_TYPE
static ClassType
ClassType. SHORT_CLASS
Fields in org.jboss.jandex with type parameters of type ClassType Modifier and Type Field Description private static java.util.Map<PrimitiveType.Primitive,ClassType>
PrimitiveType. boxingMap
Methods in org.jboss.jandex that return ClassType Modifier and Type Method Description ClassType
ClassType. asClassType()
ClassType
Type. asClassType()
Casts this type to aClassType
and returns it if the kind isType.Kind.CLASS
.static ClassType
PrimitiveType. box(PrimitiveType primitiveType)
Returns a class type that is the result of a boxing conversion of the givenprimitiveType
.ClassType
ClassType.Builder. build()
Returns the built class type.static ClassType
ClassType. create(java.lang.Class<?> clazz)
Create an instance of a class type for givenclazz
.static ClassType
ClassType. create(java.lang.String name)
Create an instance of a class type with givenname
.static ClassType
ClassType. create(DotName name)
Create an instance of a class type with givenname
.Methods in org.jboss.jandex with parameters of type ClassType Modifier and Type Method Description static PrimitiveType
PrimitiveType. unbox(ClassType classType)
Returns a primitive type that is the result of an unboxing conversion of the givenclassType
.
-