|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.springframework.binding.method.MethodSignature
public class 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.
| Constructor Summary | |
|---|---|
MethodSignature(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 | |
|---|---|
boolean |
equals(Object obj)
|
String |
getMethodName()
Returns the method name. |
Parameters |
getParameters()
Returns the method parameters. |
int |
hashCode()
|
String |
toString()
|
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public MethodSignature(String methodName)
methodName - the name of the method
public MethodSignature(String methodName,
Parameter parameter)
methodName - the name of the methodparameter - the method parameter
public MethodSignature(String methodName,
Parameters parameters)
methodName - the name of the methodparameters - the method parameters| Method Detail |
|---|
public String getMethodName()
public Parameters getParameters()
public boolean equals(Object obj)
equals in class Objectpublic int hashCode()
hashCode in class Objectpublic String toString()
toString in class Object
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||