List<String> list = new ArrayList<String>(){{
add("First Object");
add("Second Object");
add("Third Object");
}};
Map<String, String> map = new HashMap<String, String>(){{
put("First Key", "First Value");
put("Second Key", "Second Value");
put("Third Key", "Third Value");
put("Fourth Key", "Fourth Value");
}};