Java Collection should be collections of Object only.
List integerList = new ArrayList();
Integer is wrapper class of primitive data type int.
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)