Associates all of the given table's keys and values in the built table. Duplicate row key column key pairs are not allowed, and will cause #build to fail. @throws NullPointerException if any key or value in table is null
(Table<? extends R, ? extends C, ? extends V> table)
| 222 | */ |
| 223 | |
| 224 | @CanIgnoreReturnValue |
| 225 | public Builder<R, C, V> putAll(Table<? extends R, ? extends C, ? extends V> table) { |
| 226 | for (Cell<? extends R, ? extends C, ? extends V> cell : table.cellSet()) { |
| 227 | put(cell); |
| 228 | } |
| 229 | return this; |
| 230 | } |
| 231 | |
| 232 | /** |
| 233 | * Returns a newly-created immutable table. |