Uses of Class
io.github.classgraph.MethodInfoList
Packages that use MethodInfoList
-
Uses of MethodInfoList in io.github.classgraph
Fields in io.github.classgraph declared as MethodInfoListModifier and TypeFieldDescription(package private) static final MethodInfoList
MethodInfoList.EMPTY_LIST
An unmodifiable emptyMethodInfoList
.(package private) MethodInfoList
ClassInfo.methodInfo
Info on fields.private MethodInfoList
Classfile.methodInfoList
The method info list.Methods in io.github.classgraph that return MethodInfoListModifier and TypeMethodDescriptionstatic MethodInfoList
MethodInfoList.emptyList()
Return an unmodifiable emptyMethodInfoList
.MethodInfoList.filter
(MethodInfoList.MethodInfoFilter filter) Find the subset of theMethodInfo
objects in this list for which the given filter predicate is true.Returns a list of all methods matching a given name.ClassInfo.getConstructorInfo()
Returns information on visible constructors declared by this class, or by its interfaces or superclasses.ClassInfo.getDeclaredConstructorInfo()
Returns information on visible constructors declared by this class, but not by its interfaces or superclasses.ClassInfo.getDeclaredMethodAndConstructorInfo()
Returns information on visible methods and constructors declared by this class, but not by its interfaces or superclasses.ClassInfo.getDeclaredMethodInfo()
Returns information on visible methods declared by this class, but not by its interfaces or superclasses, that are not constructors.ClassInfo.getDeclaredMethodInfo
(String methodName) Returns information on the method(s) or constructor(s) of the given name declared by this class, but not by its interfaces or superclasses.private MethodInfoList
ClassInfo.getDeclaredMethodInfo
(String methodName, boolean getNormalMethods, boolean getConstructorMethods, boolean getStaticInitializerMethods) Get the declared methods, constructors, and/or static initializer methods of the class.ClassInfo.getMethodAndConstructorInfo()
Returns information on visible constructors declared by this class, or by its interfaces or superclasses.ClassInfo.getMethodInfo()
Returns information on visible methods declared by this class, or by its interfaces or superclasses, that are not constructors.ClassInfo.getMethodInfo
(String methodName) Returns information on the method(s) or constructor(s) of the given name declared by this class, but not by its interfaces or superclasses.private MethodInfoList
ClassInfo.getMethodInfo
(String methodName, boolean getNormalMethods, boolean getConstructorMethods, boolean getStaticInitializerMethods) Get the methods, constructors, and/or static initializer methods of the class.Methods in io.github.classgraph that return types with arguments of type MethodInfoListModifier and TypeMethodDescriptionMethodInfoList.asMap()
Get thisMethodInfoList
as a map from method name to aMethodInfoList
of methods with that name.Methods in io.github.classgraph with parameters of type MethodInfoListModifier and TypeMethodDescription(package private) void
ClassInfo.addMethodInfo
(MethodInfoList methodInfoList, Map<String, ClassInfo> classNameToClassInfo) Add method info.