package java.lang.reflect;
public final class Method extends AccessibleObject implements Member {
public boolean equals(Object obj) {
return false;
}
public Class getDeclaringClass() {
return null;
}
public Class[] getExceptionTypes() {
return null;
}
public int getModifiers() {
return 0;
}
public String getName() {
return null;
}
public Class[] getParameterTypes() {
return null;
}
public Class getReturnType() {
return null;
}
public int hashCode() {
return 0;
}
/**
* @throws IllegalAccessException
* @throws IllegalArgumentException
* @throws InvocationTargetException
* @throws NullPointerException
* @throws ExceptionInInitializerError
*/
public Object invoke(Object obj, Object[] args) throws IllegalAccessException, IllegalArgumentException, InvocationTargetException {
return null;
}
public String toString() {
return null;
}
}