Is there a better way of achieving this?
public static List toList(String[] array) { List list = new ArrayList(array.length);
Arrays.asList(array);
Example:
List stooges = Arrays.asList("Larry", "Moe", "Curly");
See Arrays.asList class documentation.