Add array to collection : Array Collections « Collections Data Structure « Java
- Java
- Collections Data Structure
- Array Collections
Add array to collection
import java.util.Arrays;
import java.util.Collection;
public class Util{
public static <T> void addArrayToCollection(T[] array, Collection<T> collection)
{
collection.addAll(Arrays.asList(array));
}
}
Related examples in the same category