Is there any way that I can put a whole Entry object to a Map object like:
Entry
Map
map.put(entry);
instead of passing a k
Guava's ImmutableMap.Builder takes entries directly.
ImmutableMap.Builder
Obviously that doesn't directly modify an existing Map, but it might well scratch the same itch.