Is there a better way of achieving this?
public static List toList(String[] array) { List list = new ArrayList(array.length);
Another way to do it:
Collections.addAll(collectionInstance,array);