Uses of Class
io.github.classgraph.FieldInfoList
-
Packages that use FieldInfoList Package Description io.github.classgraph -
-
Uses of FieldInfoList in io.github.classgraph
Fields in io.github.classgraph declared as FieldInfoList Modifier and Type Field Description (package private) static FieldInfoList
FieldInfoList. EMPTY_LIST
An unmodifiable emptyFieldInfoList
.(package private) FieldInfoList
ClassInfo. fieldInfo
Info on fields.private FieldInfoList
Classfile. fieldInfoList
The field info list.Methods in io.github.classgraph that return FieldInfoList Modifier and Type Method Description static FieldInfoList
FieldInfoList. emptyList()
Return an unmodifiable emptyFieldInfoList
.FieldInfoList
FieldInfoList. filter(FieldInfoList.FieldInfoFilter filter)
Find the subset of theFieldInfo
objects in this list for which the given filter predicate is true.FieldInfoList
ClassInfo. getDeclaredFieldInfo()
Returns information on all visible fields declared by this class, but not by its superclasses.FieldInfoList
ClassInfo. getEnumConstants()
FieldInfoList
ClassInfo. getFieldInfo()
Returns information on all visible fields declared by this class, or by its superclasses.Methods in io.github.classgraph with parameters of type FieldInfoList Modifier and Type Method Description (package private) void
ClassInfo. addFieldInfo(FieldInfoList fieldInfoList, java.util.Map<java.lang.String,ClassInfo> classNameToClassInfo)
Add field info.
-