static <A1,A2,C> Functions.V2<A1,A2> |
ReflectUtil.bindInstanceV2(C instance,
String name,
boolean setAccessible,
Class<? super A1> a1Type,
Class<? super A2> a2Type) |
load an instance method that takes 2 parameter and returns nothing
|
static <A1,C> Functions.V2<C,A1> |
ReflectUtil.loadInstanceV1(Class<? super C> clazz,
String name,
boolean setAccessible,
Class<? super A1> a1Type) |
load an instance method that take 1 parameter and does not return anything
|
static <A1,A2> Functions.V2<A1,A2> |
ReflectUtil.loadStaticV2(Class<?> clazz,
String name,
boolean setAccessible,
Class<? super A1> a1Type,
Class<? super A2> a2Type) |
load static method that takes two parameters and return nothing
|