public class MethodDescriptor extends Object implements Comparable
Constructor and description |
---|
MethodDescriptor
(String methodName) |
MethodDescriptor
(String methodName, int modifiers) |
MethodDescriptor
(String methodName, Class<?>[] paramTypes) |
MethodDescriptor
(String methodName, String[] paramTypes) |
MethodDescriptor
(String methodName, Class<?>[] paramTypes, int modifiers) |
MethodDescriptor
(String methodName, Class<?>[] paramTypes, int modifiers, Annotation[] annotations) |
MethodDescriptor
(String methodName, String[] paramTypes, int modifiers) |
MethodDescriptor
(String methodName, String[] paramTypes, int modifiers, Annotation[] annotations) |
Type Params | Return Type | Name and description |
---|---|---|
|
public int |
compareTo(MethodDescriptor md) |
|
public boolean |
equals(Object obj) |
|
public static MethodDescriptor |
forMethod(Method method) |
|
public static MethodDescriptor |
forMethod(Method method, boolean removeAbstractModifier) |
|
public Annotation[] |
getAnnotations() |
|
public int |
getModifiers() |
|
public String |
getName() |
|
public String[] |
getParameterTypes() |
|
public int |
hashCode() |
|
public boolean |
matches(MethodDescriptor md) |
|
public boolean |
matches(Class[] otherParamTypes) |
|
public String |
toString() |