Is there a more streamlined way to do the following?
Map map = new HashMap(); map.put(\"a\", \"apple\"); map.put(
You could use ImmutableMap.Builder from Google collections library.