I want to discover at run-time ONLY the static Methods of a class, how can I do this? Or, how to differentiate between static and non-static methods.
|
1
|
|
|
|
|
|
Use
Note: This method is actually dangerous from a security standpoint. Class.getMethods "bypass[es] SecurityManager checks depending on the immediate caller's class loader" (see section 6 of the Java secure coding guidelines). Disclaimer: Not tested or even compiler. Note |
||||
|
|
|
You can get the static methods like this:
|
||
|
|
|
|
To flesh out the previous (correct) answer, here is a full code snippet which does what you want (exceptions ignored):
|
||
|
|
