| java.lang.Object org.springframework.binding.method.MethodKey
MethodKey | public class MethodKey implements Serializable(Code) | | A helper for resolving and caching a Java method by reflection.
author: Keith Donald |
MethodKey | public MethodKey(Class declaredType, String methodName, Class[] parameterTypes)(Code) | | Create a new method key.
Parameters: declaredType - the class the method is a member of Parameters: methodName - the method name Parameters: parameterTypes - the method's parameter types, or null if the method has no parameters |
findMethodConsiderAssignableParameterTypes | protected Method findMethodConsiderAssignableParameterTypes()(Code) | | Find the keyed method using 'relaxed' typing.
|
getDeclaredType | public Class getDeclaredType()(Code) | | Return the class the method is a member of.
|
getMethodName | public String getMethodName()(Code) | | Returns the method name.
|
getParameterTypes | public Class[] getParameterTypes()(Code) | | Returns the method parameter types. Could contain null values
if no type was specified for the corresponding parameter.
|
hashCode | public int hashCode()(Code) | | |
|
|