| Modifier and Type | Method and Description |
|---|---|
static MethodInfoList |
MethodInfoList.emptyList()
Return an unmodifiable empty
MethodInfoList. |
MethodInfoList |
MethodInfoList.filter(MethodInfoList.MethodInfoFilter filter)
Find the subset of the
MethodInfo objects in this list for which the given filter predicate is true. |
MethodInfoList |
MethodInfoList.get(String methodName)
Returns a list of all methods matching a given name.
|
MethodInfoList |
ClassInfo.getConstructorInfo()
Returns information on visible constructors declared by this class, or by its interfaces or superclasses.
|
MethodInfoList |
ClassInfo.getDeclaredConstructorInfo()
Returns information on visible constructors declared by this class, but not by its interfaces or
superclasses.
|
MethodInfoList |
ClassInfo.getDeclaredMethodAndConstructorInfo()
Returns information on visible methods and constructors declared by this class, but not by its interfaces or
superclasses.
|
MethodInfoList |
ClassInfo.getDeclaredMethodInfo()
Returns information on visible methods declared by this class, but not by its interfaces or superclasses,
that are not constructors.
|
MethodInfoList |
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.
|
MethodInfoList |
ClassInfo.getMethodAndConstructorInfo()
Returns information on visible constructors declared by this class, or by its interfaces or superclasses.
|
MethodInfoList |
ClassInfo.getMethodInfo()
Returns information on visible methods declared by this class, or by its interfaces or superclasses, that are
not constructors.
|
MethodInfoList |
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.
|
| Modifier and Type | Method and Description |
|---|---|
Map<String,MethodInfoList> |
MethodInfoList.asMap()
Get this
MethodInfoList as a map from method name to a MethodInfoList of methods with that
name. |
Copyright © 2021. All rights reserved.