Uses of Interface
jakarta.enterprise.lang.model.types.ClassType
-
Packages that use ClassType Package Description jakarta.enterprise.inject.build.compatible.spi The build compatible extension SPI.jakarta.enterprise.lang.model.types Interfaces that represent types. -
-
Uses of ClassType in jakarta.enterprise.inject.build.compatible.spi
Methods in jakarta.enterprise.inject.build.compatible.spi that return ClassType Modifier and Type Method Description ClassType
Types. ofClass(ClassInfo clazz)
Returns aClassType
for the given class declaration.ClassType
Types. ofClass(String name)
Returns aClassType
for the given binary name, as defined by The Java™ Language Specification; in other words, the class name as returned byClass.getName()
.Methods in jakarta.enterprise.inject.build.compatible.spi with parameters of type ClassType Modifier and Type Method Description ParameterizedType
Types. parameterized(ClassType genericType, Type... typeArguments)
Returns aParameterizedType
for the given generic type and type arguments. -
Uses of ClassType in jakarta.enterprise.lang.model.types
Methods in jakarta.enterprise.lang.model.types that return ClassType Modifier and Type Method Description default ClassType
ClassType. asClass()
default ClassType
Type. asClass()
Returns this type as a class type.ClassType
ParameterizedType. genericClass()
Returns the type of the generic class that was parameterized with a list of type arguments to form this parameterized type.
-