Methods
Name | Description |
---|---|
equals(Object) | Compares this Method against the specified object. |
getDeclaringClass() | Returns the Class object representing the class or interface that declares the method represented by this Method object. |
getExceptionTypes() | Returns an array of Class objects that represent the types of the checked exceptions thrown by the underlying method represented by this Method object. |
getModifiers() | Returns the Java language modifiers for the method represented by this Method object, as an integer. |
getName() | Returns the name of the method represented by this Method object, as a String. |
getParameterTypes() | Returns an array of Class objects that represent the formal parameter types, in declaration order, of the method represented by this Method object. |
getReturnType() | Returns a Class object that represents the formal return type of the method represented by this Method object. |
hashCode() | Returns a hashcode for this Method. |
invoke(Object, Object[]) | Invokes the underlying method represented by this Method object, on the specified object with the specified parameters. |
toString() | Returns a string describing this Method. |