Java tutorial
//package com.java2s; import java.util.Collection; public class Main { public static <T> void fromArrayToCollection(T[] a, Collection<T> c) { if (c == null) throw new NullPointerException("Collection must be not null"); for (T e : a) { c.add(e); } } }