|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjoptsimple.internal.Reflection
public final class Reflection
Helper methods for reflection.
Method Summary | ||
---|---|---|
static
|
findConverter(java.lang.Class<V> clazz)
Finds an appropriate value converter for the given class. |
|
static
|
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. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public static <V> ValueConverter<V> findConverter(java.lang.Class<V> clazz)
V
- a constraint on the class object to introspectclazz
- class to introspect on
public 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 constructor
ReflectionException
- 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 method
ReflectionException
- in lieu of the gaggle of reflection-related exceptions
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |