Uses of Class
io.quarkus.gizmo.Type
-
-
Uses of Type in io.quarkus.gizmo
Subclasses of Type in io.quarkus.gizmo Modifier and Type Class Description static classType.ArrayTypestatic classType.ClassTypestatic classType.ParameterizedTypestatic classType.PrimitiveTypestatic classType.TypeVariablestatic classType.VoidTypestatic classType.WildcardTypeFields in io.quarkus.gizmo declared as Type Modifier and Type Field Description private TypeType.ArrayType. elementTypeprivate TypeType.TypeVariable. firstBoundprivate TypeType.WildcardType. lowerBound(package private) TypeType.ClassType. owner(package private) TypeType.ParameterizedType. ownerprivate TypeMethodSignatureBuilderImpl. returnType(package private) TypeClassSignatureBuilderImpl. superClassprivate TypeFieldSignatureBuilderImpl. typeprivate TypeType.WildcardType. upperBoundFields in io.quarkus.gizmo with type parameters of type Type Modifier and Type Field Description private java.util.List<Type>MethodSignatureBuilderImpl. exceptionsprivate java.util.List<Type>Type.TypeVariable. nextBoundsprivate java.util.List<Type>MethodSignatureBuilderImpl. parameterTypes(package private) java.util.List<Type>ClassSignatureBuilderImpl. superInterfaces(package private) java.util.List<Type>Type.ParameterizedType. typeArgumentsMethods in io.quarkus.gizmo that return types with arguments of type Type Modifier and Type Method Description (package private) java.util.List<Type>Type.ParameterizedType. getTypeArguments()Methods in io.quarkus.gizmo with parameters of type Type Modifier and Type Method Description SignatureBuilder.MethodSignatureBuilderMethodSignatureBuilderImpl. addParameterType(Type parameterType)SignatureBuilder.MethodSignatureBuilderSignatureBuilder.MethodSignatureBuilder. addParameterType(Type parameterType)static Type.ArrayTypeType. arrayType(Type elementType)static Type.ArrayTypeType. arrayType(Type elementType, int dimensions)private booleanClassSignatureBuilderImpl. containsWildcard(Type type)private java.lang.StringClassCreator.Builder. getRawType(Type type)Type.ParameterizedTypeType.ClassType. innerParameterizedType(java.lang.String simpleName, Type... typeArguments)Allows build a signature likeLcom/example/Outer.Inner<TU;>;.Type.ParameterizedTypeType.ParameterizedType. innerParameterizedType(java.lang.String simpleName, Type... typeArguments)Allows building a signature likeLcom/example/Outer<TT;>.Inner<TU;>;.static Type.ParameterizedTypeType. parameterizedType(Type.ClassType genericClass, Type... typeArguments)SignatureBuilder.MethodSignatureBuilderMethodSignatureBuilderImpl. setReturnType(Type returnType)SignatureBuilder.MethodSignatureBuilderSignatureBuilder.MethodSignatureBuilder. setReturnType(Type returnType)SignatureBuilder.FieldSignatureBuilderFieldSignatureBuilderImpl. setType(Type type)SignatureBuilder.FieldSignatureBuilderSignatureBuilder.FieldSignatureBuilder. setType(Type type)static Type.TypeVariableType. typeVariable(java.lang.String name, Type classOrTypeVariableBound)static Type.TypeVariableType. typeVariable(java.lang.String name, Type classBound, Type... interfaceBounds)static Type.WildcardTypeType. wildcardTypeWithLowerBound(Type bound)static Type.WildcardTypeType. wildcardTypeWithUpperBound(Type bound)Constructors in io.quarkus.gizmo with parameters of type Type Constructor Description ArrayType(Type elementType, int dimensions)ClassType(java.lang.String name, Type owner)ParameterizedType(Type.ClassType genericClass, java.util.List<Type> typeArguments, Type owner)TypeVariable(java.lang.String name, Type firstBound, java.util.List<Type> nextBounds)WildcardType(Type upperBound, Type lowerBound)Constructor parameters in io.quarkus.gizmo with type arguments of type Type Constructor Description ParameterizedType(Type.ClassType genericClass, java.util.List<Type> typeArguments, Type owner)TypeVariable(java.lang.String name, Type firstBound, java.util.List<Type> nextBounds)
-