1) a Collection . , java.util.Set, java.util.List, , java.util.SortedSet
2) Array, Arrays.asList()
List<String> myStrings = Arrays.asList(new String[]{"one", "two", "three"});
, :
List<String> myStrings = new ArrayList<String>(){
// this is the inside of an anonymouse class
{
// this is the inside of an instance block in the anonymous class
this.add("one");
this.add("two");
this.add("three");
}};