Is there away of finding out how many Lists an ArrayList holds?
ArrayList<ArrayList<Integer>> myList = new ArrayList<ArrayList<Integer>>();
List<Integer> myOtherList = new LinkedList<Integer>();
As with any list, you can find out how many objects it is holding with List#size().
int size = myList.size(); // amount of sublists that myList holds