Uses of Class
io.github.classgraph.TypeParameter
-
Packages that use TypeParameter Package Description io.github.classgraph -
-
Uses of TypeParameter in io.github.classgraph
Fields in io.github.classgraph declared as TypeParameter Modifier and Type Field Description private TypeParameter
TypeVariableSignature. typeParameterCached
The resolved type parameter, if any.Fields in io.github.classgraph with type parameters of type TypeParameter Modifier and Type Field Description (package private) java.util.List<TypeParameter>
ClassTypeSignature. typeParameters
The class type parameters.(package private) java.util.List<TypeParameter>
MethodTypeSignature. typeParameters
The method type parameters.Methods in io.github.classgraph that return TypeParameter Modifier and Type Method Description TypeParameter
TypeVariableSignature. resolve()
Look up a type variable (e.g.Methods in io.github.classgraph that return types with arguments of type TypeParameter Modifier and Type Method Description java.util.List<TypeParameter>
ClassTypeSignature. getTypeParameters()
Get the type parameters for the class.java.util.List<TypeParameter>
MethodTypeSignature. getTypeParameters()
Get the type parameters for the method, if this is a generic method.(package private) static java.util.List<TypeParameter>
TypeParameter. parseList(Parser parser, java.lang.String definingClassName)
Parse a list of type parameters intoTypeParameter
objects.Constructor parameters in io.github.classgraph with type arguments of type TypeParameter Constructor Description ClassTypeSignature(ClassInfo classInfo, java.util.List<TypeParameter> typeParameters, ClassRefTypeSignature superclassSignature, java.util.List<ClassRefTypeSignature> superinterfaceSignatures, java.util.List<ClassRefOrTypeVariableSignature> throwsSignatures)
Constructor.MethodTypeSignature(java.util.List<TypeParameter> typeParameters, java.util.List<TypeSignature> paramTypes, TypeSignature resultType, java.util.List<ClassRefOrTypeVariableSignature> throwsSignatures)
Constructor.
-