Here you can find the source of toList(T[] array)
public static <T> List<T> toList(T[] array)
//package com.java2s; import java.util.*; public class Main { public static <T> List<T> toList(T[] array) { return Arrays.asList(array); }//w ww. jav a2 s .c o m }