测试代码
package zj.playretrofit;
import java.lang.*;
import java.lang.reflect.Method;
enum newEnum {
M {
},
N {
};
}
class InnerClassA{
public void haha(){
};
}
public class TestMethod {
public static void main(String args[]) {
/* returns the Class object corresponding to this enum
constant's enum type */
System.out.p