public interface ICallHandler
| Modifier and Type | Field and Description |
|---|---|
static Object |
UNHANDLED
A value resulting from #call() indicating the call could not be dispatched.
|
| Modifier and Type | Method and Description |
|---|---|
Object |
call(Class<?> iface,
String name,
String actualName,
Class<?> returnType,
Class<?>[] paramTypes,
Object[] args)
Dispatch a call to an interface method.
|
static final Object UNHANDLED
Object call(Class<?> iface, String name, String actualName, Class<?> returnType, Class<?>[] paramTypes, Object[] args)
iface - The extended interface and owner of the methodname - The name of the methodactualName - The actual name of the property associated with the method e.g., a Json name that is not a legal Java identifier, can be nullreturnType - The return type of the methodparamTypes - The parameter types of the methodargs - The arguments from the call siteCopyright © 2021. All rights reserved.