JavaInvoker<T> |
JavaInvoker.copy() |
static JavaInvoker<Constructor> |
JavaReflection.findConstructorInvoker(List<Constructor<?>> constructors,
Class<?>[] parameterTypes) |
static JavaInvoker<Method> |
JavaReflection.findInvoker(Class<?> cls,
String name) |
static JavaInvoker<Method> |
JavaReflection.findInvoker(Class<?> cls,
String name,
Class<?>[] parameterTypes)
Returns the method best matching the given signature, including type coercion, or null.
|
static <T extends Executable> JavaInvoker<T> |
JavaReflection.findInvoker(List<JavaInvoker<T>> executables,
Class<?>[] parameterTypes) |
static JavaInvoker<Method> |
JavaReflection.findMethodInvoker(List<JavaInvoker<Method>> methods,
Class<?>[] parameterTypes) |
static JavaInvoker<Method> |
JavaReflection.getExtensionMethod(Object obj,
String name,
Object... arguments) |
static JavaInvoker<Method> |
JavaReflection.getFunction(String name,
Object... arguments) |
static JavaInvoker<Method> |
JavaReflection.getMethod(Object obj,
String name,
Object... arguments) |