Java tutorial
//package com.java2s; //License from project: Apache License import java.util.ArrayList; import java.util.List; public class Main { public static <T> List<T> asList(T... args) { ArrayList<T> rv = new ArrayList<T>(); for (T a : args) { rv.add(a); } return rv; } }