With Eclipse Collections you can write the following:
List<String> list = Lists.mutable.with("Buenos Aires", "Córdoba", "La Plata");
You can also be more specific about the types and whether they are Mutable or Immutable.
MutableList<String> mList = Lists.mutable.with("Buenos Aires", "Córdoba", "La Plata");ImmutableList<String> iList = Lists.immutable.with("Buenos Aires", "Córdoba", "La Plata");
You can also do the same with Sets and Bags:
Set<String> set = Sets.mutable.with("Buenos Aires", "Córdoba", "La Plata");MutableSet<String> mSet = Sets.mutable.with("Buenos Aires", "Córdoba", "La Plata");ImmutableSet<String> iSet = Sets.immutable.with("Buenos Aires", "Córdoba", "La Plata");Bag<String> bag = Bags.mutable.with("Buenos Aires", "Córdoba", "La Plata");MutableBag<String> mBag = Bags.mutable.with("Buenos Aires", "Córdoba", "La Plata");ImmutableBag<String> iBag = Bags.immutable.with("Buenos Aires", "Córdoba", "La Plata");
Note: I am a committer for Eclipse Collections.