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
You can use:
HashMap m = Maps.newHashMap( ImmutableMap.of("a",1,"b",2) );
It's not as classy and readable, but does the work.