I wonder whether it is possible to cast a non-Comparable to something so that it matches the method parameter T which has template type <T extends Comparable<? super T>>, like the Collections.sort() method
public static <T extends Comparable<? super T>> void sort(List<T> list)
Suppose I somewhere have a reference to list of non-Comparables and want to invoke that method by casting like this:
List<E> foo = new List<E>(a);
Collections.sort( /* magic cast */ foo);
I can do this if I cast to (List<? extends Comparable>), but this generates a warning that I am using raw-types (Comparable without template types in this case). Let's say I want to avoid using raw-types or even suppressing them via @SuppressWarnings("rawtypes") (e.g. to preserve backward compatibility and avoiding raw-types).
Is it possible to avoid using raw types by casting to (List<? extends Comparable</*something*/>>) and what would it be that "something" (unchecked cast is acceptable)?
EDIT: This example is just to illustrate the point. Actually I do not have a Comparable nor do I want to sort anything, but I just need to dynamically check whether something is of some type (Comparable in this example) (via instanceof) and then pass some argument to a method which has template arguments similar to the Collections.sort() method.
Edoes not implementComparable, what is the point of trying to pass a list of these toCollections.sort? Surely you will just get a class cast exception at runtime? – Péter Török Feb 16 '11 at 13:27