Uses of Class
io.github.classgraph.ClassInfo
-
Packages that use ClassInfo Package Description io.github.classgraph -
-
Uses of ClassInfo in io.github.classgraph
Methods in io.github.classgraph that return ClassInfo Modifier and Type Method Description ClassInfo
AnnotationClassRef. getClassInfo()
ClassInfo
AnnotationInfo. getClassInfo()
protected ClassInfo
AnnotationParameterValue. getClassInfo()
protected ClassInfo
ArrayTypeSignature. getClassInfo()
protected ClassInfo
BaseTypeSignature. getClassInfo()
protected ClassInfo
ClassInfo. getClassInfo()
ClassInfo
ClassRefTypeSignature. getClassInfo()
protected ClassInfo
ClassTypeSignature. getClassInfo()
ClassInfo
FieldInfo. getClassInfo()
ClassInfo
MethodInfo. getClassInfo()
protected ClassInfo
MethodTypeSignature. getClassInfo()
ClassInfo
ModuleInfo. getClassInfo(java.lang.String className)
Get theClassInfo
object for the named class in this module, or null if the class was not found in this module.ClassInfo
PackageInfo. getClassInfo(java.lang.String className)
Get theClassInfo
object for the named class in this package, or null if the class was not found in this module.ClassInfo
ScanResult. getClassInfo(java.lang.String className)
Get theClassInfo
object for the named class, or null if no class of the requested name was found in a whitelisted/non-blacklisted package during the scan.protected ClassInfo
TypeArgument. getClassInfo()
protected ClassInfo
TypeParameter. getClassInfo()
ClassInfo
ClassInfo. getSuperclass()
Get the single direct superclass of this class, or null if none.Methods in io.github.classgraph that return types with arguments of type ClassInfo Modifier and Type Method Description java.util.Map<ClassInfo,ClassInfoList>
ScanResult. getClassDependencyMap()
java.util.Map<ClassInfo,ClassInfoList>
ScanResult. getReverseClassDependencyMap()
Methods in io.github.classgraph with parameters of type ClassInfo Modifier and Type Method Description boolean
ClassInfoList.ClassInfoFilter. accept(ClassInfo classInfo)
Whether or not to allow aClassInfo
list item through the filter.int
ClassInfo. compareTo(ClassInfo o)
Compare based on class name.ClassInfoList
ClassInfoList. getAssignableTo(ClassInfo superclassOrInterface)
Filter thisClassInfoList
to include only classes that are assignable to the requested class, assignableToClass (i.e.
-