how to define an arraylist in java

Java
ArrayList<Type> name = new ArrayList<Type>();ArrayList<Integer> integerArray = new ArrayList<Integer>();
ArrayList<String> integerArray = new ArrayList<String>();
ArrayList<Double> integerArray = new ArrayList<Double>();
//... keep replacing what is inside the <> with the appropriate
//data type

Source

Also in Java: