I am interating through classes in a Jar file and wish to find those which are not abstract. I can solve this by instantiating the classes and trapping InstantiationException but that has a performance hit as some classes have heavy startup. I can't find anything obviously like isAbstract() in the Class.java docs. (many thanks for the rapid replies I got last time)

link|improve this question

Many thanks to both of you for the very rapid answer - it's not intuitive! – peter.murray.rust Jul 2 '09 at 7:19
feedback

2 Answers

up vote 36 down vote accepted

It'll have abstract as one of its modifiers when you call getModifiers() on the class object.

This link should help.

 Modifier.isAbstract( someClass.getModifiers() );

Also:

http://java.sun.com/javase/6/docs/api/java/lang/reflect/Modifier.html

http://java.sun.com/javase/6/docs/api/java/lang/Class.html#getModifiers()

link|improve this answer
Thanks! One little note: You can't use "class" as a variable name, maybe you want to change your example. – Tim Büthe Nov 24 '10 at 17:07
@Tim: d'oh...thanks. – seth Dec 2 '10 at 4:43
sweet tip seth~ – sova Dec 2 '10 at 5:18
feedback
Class myClass = myJar.load("classname");
bool test = Modifier.isAbstract(myClass.getModifiers());
link|improve this answer
Also, what seth said. :) – Stobor Jul 2 '09 at 7:04
Great minds think alike. – seth Jul 2 '09 at 7:09
1  
just to check, that should be "Modifier" – peter.murray.rust Jul 2 '09 at 7:24
feedback

Your Answer

 
or
required, but never shown

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