Uses of Class
io.quarkus.gizmo2.GenericType.OfClass
Packages that use GenericType.OfClass
-
Uses of GenericType.OfClass in io.quarkus.gizmo2
Subclasses of GenericType.OfClass in io.quarkus.gizmo2Modifier and TypeClassDescriptionstatic final classA generic type corresponding to an inner class.static final classA generic type corresponding to a "root" (non-inner) class.Fields in io.quarkus.gizmo2 declared as GenericType.OfClassModifier and TypeFieldDescriptionstatic final GenericType.OfClassGenericTypes.GT_ObjectThe generic type forjava.lang.Object.Methods in io.quarkus.gizmo2 that return GenericType.OfClassModifier and TypeMethodDescriptionstatic GenericType.OfClassReflection2Gizmo.genericTypeOf(ParameterizedType type) Returns the given parameterized reflection type as a generic type (notnull).static GenericType.OfClassReturns a generic type for the given class or interface type.static GenericType.OfClassGenericType.ofClass(Class<?> type, TypeArgument... typeArguments) Returns a generic type for the given class or interface type.static GenericType.OfClassGenericType.ofClass(Class<?> type, List<TypeArgument> typeArguments) Returns a generic type for the given class or interface type.static GenericType.OfClassReturns a generic type for the given class or interface type.static GenericType.OfClassGenericType.ofClass(ClassDesc desc, TypeArgument... typeArguments) Returns a generic type for the given class or interface type.static GenericType.OfClassGenericType.ofClass(ClassDesc desc, List<TypeArgument> typeArguments) Returns a generic type for the given class or interface type.GenericType.OfInnerClass.outerType()Returns the enclosing class of this inner class.<A extends Annotation>
GenericType.OfClassGenericType.OfClass.withAnnotation(Class<A> annotationType) <A extends Annotation>
GenericType.OfClassGenericType.OfClass.withAnnotation(Class<A> annotationType, Consumer<AnnotationCreator<A>> builder) GenericType.OfClass.withAnnotations(Consumer<AnnotatableCreator> builder) GenericType.OfClass.withArguments(List<TypeArgument> newArguments) Returns a copy of this generic type with the given type arguments.Methods in io.quarkus.gizmo2 with parameters of type GenericType.OfClassModifier and TypeMethodDescriptionbooleanGenericType.OfClass.equals(GenericType.OfClass other) Returnstrueif this object is equal to the given object, orfalseif it is not.booleanGenericType.OfInnerClass.equals(GenericType.OfClass other) booleanGenericType.OfRootClass.equals(GenericType.OfClass other) static GenericType.OfInnerClassGenericType.ofInnerClass(GenericType.OfClass outerClass, String name) Returns a generic type representing an inner class of another class (notnull).GenericType.OfInnerClass.withOuterType(GenericType.OfClass outerType) -
Uses of GenericType.OfClass in io.quarkus.gizmo2.creator
Methods in io.quarkus.gizmo2.creator that return GenericType.OfClassModifier and TypeMethodDescriptionTypeCreator.genericType()Returns the generic type of this class.Methods in io.quarkus.gizmo2.creator with parameters of type GenericType.OfClassModifier and TypeMethodDescriptionvoidClassCreator.extends_(GenericType.OfClass genericType) Extend the given generic class.voidInterfaceCreator.extends_(GenericType.OfClass genericType) Extend a generic interface.voidClassCreator.implements_(GenericType.OfClass genericType) Implement a generic interface.voidTypeParameterCreator.setFirstBound(GenericType.OfClass bound) Establish the (optional) first bound for the type variable.default voidTypeParameterCreator.setOtherBounds(GenericType.OfClass... bounds) Establish the other (secondary) bounds for the type variable.Method parameters in io.quarkus.gizmo2.creator with type arguments of type GenericType.OfClassModifier and TypeMethodDescriptionvoidTypeParameterCreator.setOtherBounds(List<GenericType.OfClass> bounds) Establish the other (secondary) bounds for the type variable.