Uses of Class
io.github.classgraph.ClassRefTypeSignature
-
Packages that use ClassRefTypeSignature Package Description io.github.classgraph -
-
Uses of ClassRefTypeSignature in io.github.classgraph
Fields in io.github.classgraph declared as ClassRefTypeSignature Modifier and Type Field Description private ClassRefTypeSignature
ClassTypeSignature. superclassSignature
The superclass type.Fields in io.github.classgraph with type parameters of type ClassRefTypeSignature Modifier and Type Field Description private java.util.List<ClassRefTypeSignature>
ClassTypeSignature. superinterfaceSignatures
The superinterface signatures.Methods in io.github.classgraph that return ClassRefTypeSignature Modifier and Type Method Description ClassRefTypeSignature
ClassTypeSignature. getSuperclassSignature()
Get the type signature for the superclass (possibly null in the case ofObject
, since it doesn't have a superclass).(package private) static ClassRefTypeSignature
ClassRefTypeSignature. parse(Parser parser, java.lang.String definingClassName)
Parse a class type signature.Methods in io.github.classgraph that return types with arguments of type ClassRefTypeSignature Modifier and Type Method Description java.util.List<ClassRefTypeSignature>
ClassTypeSignature. getSuperinterfaceSignatures()
Get the type signatures of any superinterfaces.Methods in io.github.classgraph with parameters of type ClassRefTypeSignature Modifier and Type Method Description private static boolean
ClassRefTypeSignature. suffixesMatch(ClassRefTypeSignature a, ClassRefTypeSignature b)
Constructors in io.github.classgraph with parameters of type ClassRefTypeSignature Constructor Description ClassTypeSignature(ClassInfo classInfo, java.util.List<TypeParameter> typeParameters, ClassRefTypeSignature superclassSignature, java.util.List<ClassRefTypeSignature> superinterfaceSignatures, java.util.List<ClassRefOrTypeVariableSignature> throwsSignatures)
Constructor.
-