arraylist of int arrays code example
Example 1: integer arraylist
ArrayList<Integer> contractValue = new ArrayList<Integer>();
Example 2: how to make an array of arraylists in java
ArrayList<Integer> [] myList = (ArrayList<Integer>[]) new ArrayList[4];