Class MethodSignature
java.lang.Object
org.springframework.binding.method.MethodSignature
A specification for a method consisting of the methodName and an optional set of named arguments. This class provides
the ability to resolve a method with parameters and evaluate its argument values as part of a
method invoker attempt
.- Author:
- Keith Donald, Jeremy Grelle
-
Constructor Summary
ConstructorDescriptionMethodSignature
(String methodName) Creates a method signature with no parameters.MethodSignature
(String methodName, Parameter parameter) Creates a method signature with a single parameter.MethodSignature
(String methodName, Parameters parameters) Creates a method signature with a list of parameters. -
Method Summary
-
Constructor Details
-
MethodSignature
Creates a method signature with no parameters.- Parameters:
methodName
- the name of the method
-
MethodSignature
Creates a method signature with a single parameter.- Parameters:
methodName
- the name of the methodparameter
- the method parameter
-
MethodSignature
Creates a method signature with a list of parameters.- Parameters:
methodName
- the name of the methodparameters
- the method parameters
-
-
Method Details