vote up 1 vote down star

I am quite comfortable with generics and such, but in this special case I have a question concerning the "Type safety: Unchecked cast from .. to .." warning.

Basically I have a List of Class objects and now I want to get a subset of these that implement a special interface but the resulting List should also have that special Type:

...
private List<Class<?>> classes;

public List<Class<? extends Concrete>> getConcreteClasses() {

    List<Class<? extends Concrete>> concreteClasses = new LinkedList<Class<? extends Concrete>>();

    for (Class<?> clazz: this.classes) {
        for (Class<?> i : clazz.getInterfaces()) {
            if (i.equals(Concrete.class)) {
                concreteClasses.add((Class<? extends Concrete>) clazz);
            }
        }
    }

    return concreteClasses;

}

The warning is of course related to the type cast:

Type safety: Unchecked cast from Class<?> to Class<? extends Concrete>

Can I get rid of the type cast or should I suppress the warning with @SuppressWarnings("unchecked")?

Thanks for answers!

PS: The environment is Java 6.

Solution: Instead of

concreteClasses.add((Class<? extends Concrete>) clazz);

use

concreteClasses.add(clazz.asSubclass(Concrete.class));
flag

2 Answers

vote up 2 vote down check

Class.asSubclass

link|flag
Thanks! Actually I already used asSubclass() in another piece of code....ooops :D – neo May 21 at 12:02
Don't be surprised if you need to supress warnings elsewhere using reflection. (As ever, reflection is evil.) – Tom Hawtin - tackline May 21 at 12:51
vote up 0 vote down

You can suppress the warnings, because you are sure the cast will work because all the classes you add implement the Concrete interface...

link|flag

Your Answer

Get an OpenID
or

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