This is not possible. Generic information is only available at compile time. However, the exact contents and structure of a list of lists will not be known until runtime. Thus, the compiler, cannot make any assurances about what each list will contain. If you do know in advance the structure of the list then it would be better to consider a holding class eg.
class Holder<T,S> {
List<T> listOfTs;
List<S> listOfSs;
}
If you know that the lists will all share a common supertype then you may wish to use wildcard bounding.
List<List<? extends Shape>> list = new ArrayList<List<? extends Shape>>();
list.add(new ArrayList<Circle>());
list.add(new ArrayList<Square>());
This will allow you to manipulate the lists according to their supertype. The problem with wildcard bounding is that you cannot add any elements to wildcard bounded collections.
Consider the following:
List<? extends Shape> list = new ArrayList<Circle>();
list.add(new Square());
// element is a valid shape, but not a valid circle
// contract of the original list is broken.
If you know you are only ever going to use a certain number of generics you could store the class that each represents and use this to cast the lists in a type safe way.
class ListHolder<T> {
private final Class<T> clazz;
private final List<T> list;
public ListHolder(Class<T> clazz) {
this.clazz = clazz;
this.list = new ArrayList<T>();
}
public boolean isCircleList() {
return this.clazz == Circle.class;
}
public List<Circle> getCircleList() {
if (!isCircleList()) {
throw new IllegalStateException("list does not contain circles");
}
return (List<Circle>) list;
}
public boolean isRectangleList() {
return this.clazz == Rectangle.class;
}
public List<Rectangle> getRectangleList() {
if (!isRectangleList()) {
throw new IllegalStateException("list does not contain rectangles");
}
return (List<Rectangle>) list;
}
public static void main(String[] args) {
ListHolder<Rectangle> rectangleListHolder = new ListHolder<Rectangle>(Rectangle.class );
List<ListHolder<? extends Shape>> list = new ArrayList<ListHolder<? extends Shape>>();
list.add(rectangleListHolder);
ListHolder<? extends Shape> shapeWildCardList = list.get(0);
List<Rectangle> rectangles = shapeWildCardList.getRectangleList();
}
}
ArrayList<ArrayList<?>>to aList<List<?>>– newacct Aug 9 '11 at 4:45