Java Collection should be collections of Object only.
List<Integer> integerList = new ArrayList<Integer>();
more from JAVA wrapper classes here!
U can directly save and get int to/from integerList as,
integerList.add(intValue);
int intValue = integerList.get(i)