public final class Reflection
extends java.lang.Object
| Modifier and Type | Method and Description |
|---|---|
static <V> ValueConverter<V> |
findConverter(java.lang.Class<V> clazz)
Finds an appropriate value converter for the given class.
|
static <T> T |
instantiate(java.lang.reflect.Constructor<T> constructor,
java.lang.Object... args)
Invokes the given constructor with the given arguments.
|
static java.lang.Object |
invoke(java.lang.reflect.Method method,
java.lang.Object... args)
Invokes the given static method with the given arguments.
|
public static <V> ValueConverter<V> findConverter(java.lang.Class<V> clazz)
V - a constraint on the class object to introspectclazz - class to introspect onpublic static <T> T instantiate(java.lang.reflect.Constructor<T> constructor,
java.lang.Object... args)
T - constraint on the type of the objects yielded by the constructorconstructor - constructor to invokeargs - arguments to hand to the constructorReflectionException - in lieu of the gaggle of reflection-related exceptionspublic static java.lang.Object invoke(java.lang.reflect.Method method,
java.lang.Object... args)
method - method to invokeargs - arguments to hand to the methodReflectionException - in lieu of the gaggle of reflection-related exceptions