@API(status=MAINTAINED, since="1.0") public final class ReflectionSupport extends Object
| Modifier and Type | Method and Description |
|---|---|
static List<Class<?>> |
findAllClassesInClasspathRoot(URI root,
Predicate<Class<?>> classTester,
Predicate<String> classNameFilter)
|
static List<Class<?>> |
findAllClassesInPackage(String basePackageName,
Predicate<Class<?>> classTester,
Predicate<String> classNameFilter)
Find all classes of the supplied
basePackageName
that match the specified classTester and classNameFilter
predicates. |
static Optional<Method> |
findMethod(Class<?> clazz,
String methodName,
Class<?>... parameterTypes)
Find the first
Method of the supplied class or interface that
meets the specified criteria, beginning with the specified class or
interface and traversing up the type hierarchy until such a method is
found or the type hierarchy is exhausted. |
static Optional<Method> |
findMethod(Class<?> clazz,
String methodName,
String parameterTypeNames)
Find the first
Method of the supplied class or interface that
meets the specified criteria, beginning with the specified class or
interface and traversing up the type hierarchy until such a method is
found or the type hierarchy is exhausted. |
static List<Method> |
findMethods(Class<?> clazz,
Predicate<Method> predicate,
HierarchyTraversalMode traversalMode)
Find all methods of the supplied class or interface
that match the specified
predicate. |
static List<Class<?>> |
findNestedClasses(Class<?> clazz,
Predicate<Class<?>> predicate)
Find all nested classes of the given class conforming to the given predicate.
|
static Object |
invokeMethod(Method method,
Object target,
Object... args)
Invoke the supplied method, making it accessible if necessary and
masking any
checked exception as an unchecked exception.
|
static Optional<Class<?>> |
loadClass(String name)
Load a class by its primitive name or fully qualified name,
using the default
ClassLoader. |
static <T> T |
newInstance(Class<T> clazz,
Object... args)
Create a new instance of the specified
Class by invoking
the constructor whose argument list matches the types of the supplied
arguments. |
public static Optional<Class<?>> loadClass(String name)
ClassLoader.
Class names for arrays may be specified using either the JVM's internal
String representation (e.g., [[I for int[][],
[Lava.lang.String; for java.lang.String[], etc.) or
source code syntax (e.g., int[][], java.lang.String[],
etc.).
name - the name of the class to load; never null or blankOptional containing the loaded class; never null
but potentially empty if no such class could be loadedpublic static List<Class<?>> findAllClassesInClasspathRoot(URI root, Predicate<Class<?>> classTester, Predicate<String> classNameFilter)
root
URI that match the specified classTester and
classNameFilter predicates.root - the root URI to start scanningclassTester - the class type filter; never nullclassNameFilter - the class name filter; never nullnull
but potentially emptypublic static List<Class<?>> findAllClassesInPackage(String basePackageName, Predicate<Class<?>> classTester, Predicate<String> classNameFilter)
basePackageName
that match the specified classTester and classNameFilter
predicates.basePackageName - the base package name to start scanningclassTester - the class type filter; never nullclassNameFilter - the class name filter; never nullnull
but potentially emptypublic static <T> T newInstance(Class<T> clazz, Object... args)
Class by invoking
the constructor whose argument list matches the types of the supplied
arguments.
The constructor will be made accessible if necessary, and any checked exception will be masked as an unchecked exception.
clazz - the class to instantiate; never nullargs - the arguments to pass to the constructor none of which may be nullExceptionUtils.throwAsUncheckedException(Throwable)public static Object invokeMethod(Method method, Object target, Object... args)
method - the method to invoke; never nulltarget - the object on which to invoke the method; may be
null if the method is staticargs - the arguments to pass to the methodnull
if the return type is voidExceptionUtils.throwAsUncheckedException(Throwable)public static Optional<Method> findMethod(Class<?> clazz, String methodName, String parameterTypeNames)
Method of the supplied class or interface that
meets the specified criteria, beginning with the specified class or
interface and traversing up the type hierarchy until such a method is
found or the type hierarchy is exhausted.clazz - the class or interface in which to find the method; never nullmethodName - the name of the method to find; never null or emptyparameterTypeNames - the fully qualified names of the types of parameters
accepted by the method, if any, provided as a comma-separated listOptional containing the method found; never null
but potentially empty if no such method could be foundfindMethod(Class, String, Class...)public static Optional<Method> findMethod(Class<?> clazz, String methodName, Class<?>... parameterTypes)
Method of the supplied class or interface that
meets the specified criteria, beginning with the specified class or
interface and traversing up the type hierarchy until such a method is
found or the type hierarchy is exhausted.clazz - the class or interface in which to find the method; never nullmethodName - the name of the method to find; never null or emptyparameterTypes - the types of parameters accepted by the method, if any;
never nullOptional containing the method found; never null
but potentially empty if no such method could be foundfindMethod(Class, String, String)public static List<Method> findMethods(Class<?> clazz, Predicate<Method> predicate, HierarchyTraversalMode traversalMode)
predicate.
The results will not contain instance methods that are overridden
or static methods that are hidden.
If you're are looking for methods annotated with a certain annotation type, consider using AnnotationSupport.findAnnotatedMethods(Class, Class, HierarchyTraversalMode).
clazz - the class or interface in which to find the methods; never nullpredicate - the method filter; never nulltraversalMode - the hierarchy traversal mode; never nullnull
but potentially emptypublic static List<Class<?>> findNestedClasses(Class<?> clazz, Predicate<Class<?>> predicate)
clazz - the class to be searched; never nullpredicate - the predicate against which the list of nested classes is
checked; never nullnull
but potentially empty