In the Java snippet:

SyndFeedInput fr = new SyndFeedInput();
SyndFeed sf = fr.build(new XmlReader(myInputStream));
List<SyndEntry> entries = sf.getEntries();

the last line generates the warning

"The expression of type List needs unchecked conversion to conform to List<SyndEntry>"

What's an appropriate way to fix this?

link|improve this question
feedback

9 Answers

up vote 23 down vote accepted

Since getEntries returns a raw List, it could hold anything.

The warning-free approach is to create a new List<SyndEntry>, then cast each element of the sf.getEntries() result to SyndEntry before adding it to your new list. Collections.checkedList does not do this checking for you—although it would have been possible to implement it to do so.

By doing your own cast up front, you're "complying with the warranty terms" of Java generics: if a ClassCastException is raised, it will be associated with a cast in the source code, not an invisible cast inserted by the compiler.

link|improve this answer
4  
Thanks -- that's an interesting insight about the "warranty" and the invisible cast done by the compiler versus a cast done explicitly in my own code. – user46277 Dec 16 '08 at 5:30
1  
Yes, the value of un-reified generics is somewhat limited, but that is one thing it does provide. Just to clarify, this requires that your code compiles without type safety warnings. – erickson Dec 16 '08 at 7:32
Hi erickson, I agree that this indeed the best solution. Check my answer stackoverflow.com/questions/367626/… for a generic version of this solution. – Bruno De Fraine May 17 '10 at 10:31
feedback

This is a common problem when dealing with pre-Java 5 APIs. To automate the solution from erickson, you can create the following generic method:

public static <T> List<T> castList(Class<? extends T> clazz, Collection<?> c) {
    List<T> r = new ArrayList<T>(c.size());
    for(Object o: c)
      r.add(clazz.cast(o));
    return r;
}

This allows you to do:

List<SyndEntry> entries = castList(SyndEntry.class, sf.getEntries());

Because this solution checks that the elements indeed have the correct element type by means of a cast, it is safe, and does not require SuppressWarnings.

link|improve this answer
Yes, that's it. – erickson May 18 '10 at 2:59
feedback

It looks like SyndFeed is not using generics.

You could either have an unsafe cast and a warning suppression:

@SuppressWarnings("unchecked")
List<SyndEntry> entries = (List<SyndEntry>) sf.getEntries();

or call Collections.checkedList - although you'll still need to suppress the warning:

@SuppressWarnings("unchecked")
List<SyndEntry> entries = collections.checkedList(sf.getEntries(), SyndEntry.class);
link|improve this answer
1  
Thanks, that does the trick. Note: one must add an "s": @SuppressWarning --> @SuppressWarnings – user46277 Dec 16 '08 at 5:34
@joeyjoejoe: Thanks. Bizarrely enough I checked that when writing the answer - but must have ignored the result of my checking! – Jon Skeet Dec 16 '08 at 6:31
feedback

Did you wirte SyndFeed?

Does sf.getEntries return List or List<SyndEntry>? My guess is it returns List and changing it to return List<SyndEntry> will fix the problem.

If SyndFeed is part of a library, I don't think you can remove the warning without adding the @SuppressWarning("unchecked") annotation to your method.

link|improve this answer
You can also add an explicit cast. – Uri Dec 15 '08 at 6:58
A cast will just produce another warning, since the code is not type safe. – erickson Dec 15 '08 at 7:15
feedback

Regarding the method suggested by Bruno, Wouldnt this hurt application performance when having Lists with many elements?. Java would have to cast each and every one of them.

link|improve this answer
1  
I'm wondering the same thing... does not seem to be a fairly optimized way of programming. – Guillaume Lebourgeois Feb 15 at 9:57
feedback

If you look at the javadoc for the class SyndFeed (I guess you are the class com.sun.syndication.feed.synd.SyndFeed), the method getEntries() doesn't return java.util.List<SyndEntry>, but returns just java.util.List.

So you need an explicit cast for this.

link|improve this answer
yes, you are right about the class. i should have mentioned that. thanks for your diligence! – user46277 Dec 16 '08 at 3:12
feedback

If you don't want to put @SuppressWarning("unchecked") on each sf.getEntries() call, you can always make a wrapper that will return List.

See this other question

link|improve this answer
feedback

Even easier

return new ArrayList<?>(getResultOfHibernateCallback(...))

link|improve this answer
feedback

Comment on Bruno De Fraine's answer:

Why it the bounded type parameter needed? Is there any difference from

public static <T> List<T> castList(Class<? extends T> clazz, Collection<?> c) {
....
} 

to this?

public static <T> List<T> castList(Class<T> clazz, Collection<?> c) {
....
} 
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.