Hello I am curious about possibility of finding all methods that are used in a Java class.
So far I tried stuff like java.lang.reflect.Method
including:
className.class.getMethods();
- it's not giving me expected result.
Expected Result:
I want to get all methods that are used in class like : Java.lang.Object.equals()