Here you can find the source of asList(T... items)
public static <T> List<T> asList(T... items)
//package com.java2s; //License from project: Apache License import java.util.*; public class Main { public static <T> List<T> asList(T... items) { return Arrays.asList(items); }//w w w . j ava 2 s . c o m }