Guava provides us with great factory methods for Java types, such as Maps.newHashMap().
Maps.newHashMap()
But are there also builders for java Maps?
HashM
HashMap is mutable; there's no need for a builder.
HashMap
Map map = Maps.newHashMap(); map.put("a", 1); map.put("b", 2);