Java tutorial
//package com.java2s; //License from project: Apache License import java.util.ArrayList; import java.util.Collections; import java.util.List; public class Main { public static <T> List<T> asList(T... array) { if (array == null) return new ArrayList<T>(); List<T> result = new ArrayList<T>(); Collections.addAll(result, array); return result; } }