import java.util.List; class Test { public void foo(List list, List list2) { Comparable c1 = (Comparable)list.get(0); Comparable c2 = (Comparable)list2.get(0); } }