I wanted to create a list of options for testing purposes. At first, I did this:
ArrayList places = new ArrayList(); places.add(\
Here is another way:
List values = Stream.of("One", "Two").collect(Collectors.toList());