The title says it all. If I didn't know that the sleep method on java.lang.Thread was static, how could I find out?

link|improve this question

feedback

2 Answers

up vote 6 down vote accepted

Use getModifiers on the Method object:

Method meth = ...;
if (Modifiers.isStatic(meth.getModifiers())) {
  // method is static
}
link|improve this answer
feedback

use

 (myclass.getModifiers() & Modifier.STATIC) != 0
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.