public interface DynamicMethodInvocation
| Modifier and Type | Method and Description |
|---|---|
java.lang.Object |
invoke(java.lang.Object target,
java.lang.String methodName,
java.lang.Object[] arguments)
Invokes the actual method.
|
boolean |
isMethodMatch(java.lang.String methodName)
Checks if a method name matches the criteria of the implementation class.
|
boolean isMethodMatch(java.lang.String methodName)
methodName - the static method namejava.lang.Object invoke(java.lang.Object target,
java.lang.String methodName,
java.lang.Object[] arguments)
target - the target on which the method is invoked.methodName - arguments - the arguments passed in the method call @return the return value of the dynamic method invocation.