Why not make a simple utility function that does this?
static <A> ArrayList<A> ll(A... a) { ArrayList l = new ArrayList(a.length); for (A x : a) l.add(x); return l;}
"ll
" stands for "literal list".
ArrayList<String> places = ll("Buenos Aires", "Córdoba", "La Plata");