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 MethodInfoListMethodInfoList.EMPTY_LISTAn unmodifiable emptyMethodInfoList.(package private) MethodInfoListClassInfo.methodInfoInfo on fields.private MethodInfoListClassfile.methodInfoListThe method info list.Methods in io.github.classgraph that return MethodInfoListModifier and TypeMethodDescriptionstatic MethodInfoListMethodInfoList.emptyList()Return an unmodifiable emptyMethodInfoList.MethodInfoList.filter(MethodInfoList.MethodInfoFilter filter) Find the subset of theMethodInfoobjects 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 MethodInfoListClassInfo.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 MethodInfoListClassInfo.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 thisMethodInfoListas a map from method name to aMethodInfoListof methods with that name.Methods in io.github.classgraph with parameters of type MethodInfoListModifier and TypeMethodDescription(package private) voidClassInfo.addMethodInfo(MethodInfoList methodInfoList, Map<String, ClassInfo> classNameToClassInfo) Add method info.