How do I get a list(names) of all the Methods() I have inside my Class in java?
Ex.
public class helloworld {
public static void main() {
...
}
public static void method() {
...
}
public static void anothermethod() {
...
}
}
The result would be:
method
anothermethod
Is it possible? Thanks in advance.