Associates all of the given map's keys and values in the built map. Duplicate keys are not allowed, and will cause #build to fail. @throws NullPointerException if any key or value in map is null
(Map<? extends K, ? extends V> map)
| 238 | */ |
| 239 | |
| 240 | @CanIgnoreReturnValue |
| 241 | public Builder<K, V> putAll(Map<? extends K, ? extends V> map) { |
| 242 | return putAll(map.entrySet()); |
| 243 | } |
| 244 | |
| 245 | /** |
| 246 | * Adds all of the given entries to the built map. Duplicate keys are not |
nothing calls this directly
no test coverage detected