import java.lang.reflect.Method
Method[] methods = interface.class.getMethods();
for(Method m : methods){
System.out.println(m.getName());
}