Uses of Class
io.github.lukehutch.fastclasspathscanner.ClassInfo
-
Packages that use ClassInfo Package Description io.github.lukehutch.fastclasspathscanner -
-
Uses of ClassInfo in io.github.lukehutch.fastclasspathscanner
Methods in io.github.lukehutch.fastclasspathscanner that return ClassInfo Modifier and Type Method Description ClassInfo
ClassInfoList. get(int index)
ClassInfo
ClassInfoList. get(String name)
Return theClassInfo
object in the list with the given name, or null if not found.ClassInfo
AnnotationClassRef. getClassInfo()
Get theClassInfo
object for the referenced class, or null if the referenced class was not encountered during scanning (i.e.ClassInfo
AnnotationInfo. getClassInfo()
Get theClassInfo
object for the annotation class of this annotation.protected ClassInfo
AnnotationParameterValue. getClassInfo()
protected ClassInfo
ArrayTypeSignature. getClassInfo()
protected ClassInfo
BaseTypeSignature. getClassInfo()
ClassInfo
ClassRefTypeSignature. getClassInfo()
Get theClassInfo
object for the referenced class, or null if the referenced class was not encountered during scanning (i.e.protected ClassInfo
ClassTypeSignature. getClassInfo()
protected ClassInfo
MethodTypeSignature. getClassInfo()
ClassInfo
ScanResult. getClassInfo(String className)
Get the ClassInfo object for the named class, or null if no class of the requested name was found in a whitelisted/non-blacklisted package during scanning.protected ClassInfo
TypeArgument. getClassInfo()
protected ClassInfo
TypeParameter. getClassInfo()
ClassInfo
FieldInfo. getDefiningClassInfo()
Get the class this field is defined within.ClassInfo
MethodInfo. getDefiningClassInfo()
Get the class this method is defined within.ClassInfo
ClassInfo. getSuperclass()
Get the single direct superclass of this class, or null if none.ClassInfo
ClassInfoList. remove(int index)
ClassInfo
ClassInfoList. set(int index, ClassInfo element)
Methods in io.github.lukehutch.fastclasspathscanner that return types with arguments of type ClassInfo Modifier and Type Method Description Iterator<ClassInfo>
ClassInfoList. iterator()
ListIterator<ClassInfo>
ClassInfoList. listIterator()
ListIterator<ClassInfo>
ClassInfoList. listIterator(int index)
List<ClassInfo>
ClassInfoList. subList(int fromIndex, int toIndex)
Methods in io.github.lukehutch.fastclasspathscanner 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.void
ClassInfoList. add(int index, ClassInfo element)
boolean
ClassInfoList. add(ClassInfo e)
int
ClassInfo. compareTo(ClassInfo o)
Compare based on class name.ClassInfo
ClassInfoList. set(int index, ClassInfo element)
Method parameters in io.github.lukehutch.fastclasspathscanner with type arguments of type ClassInfo Modifier and Type Method Description boolean
ClassInfoList. addAll(int index, Collection<? extends ClassInfo> c)
boolean
ClassInfoList. addAll(Collection<? extends ClassInfo> c)
-