java initialize list with values code example

Example 1: java instantiate list with value

List<String> strings = Arrays.asList("foo", "bar", "baz");

Example 2: java instantiate collection with values

List<Integer> integerArray = Arrays.asList(2, 41, 42, 48);

Example 3: list java initialize

List<MyType> myList = new ArrayList<MyType>();

Example 4: how to make an arraylist java

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

Example 5: initialize arraylist

ArrayList<Type> list = new ArrayList<Type>(Arrays.asList(
		elem1, elem2,..., elemN
        ));

Example 6: how to make a new arraylist java

ArrayList<Type> name = new ArrayList<Type>();