Interface MethodSignature
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
MethodSignatureImpl
public interface MethodSignature extends Serializable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetMethodName()String[]getParameterTypes()booleanmatches(Method method)Determines whether this method signature matches the signature of the given method
-
-
-
Method Detail
-
getMethodName
String getMethodName()
-
getParameterTypes
String[] getParameterTypes()
-
matches
boolean matches(Method method)
Determines whether this method signature matches the signature of the given method- Parameters:
method- the given method- Returns:
- true iff the method signature represented by this object matches the signature of the given method
-
-