Comment initialiser une nouvelle collection

Collection<String> collection = 
    new ArrayList<String>(Arrays.asList(new String[] { "1", "2", "3" }));
Unsightly Unicorn