{@inheritDoc} If table is an ArrayTable, its null values will be stored in this table, possibly replacing values that were previously non-null. @throws NullPointerException if table has a null key @throws IllegalArgumentException if any of the provided table's row keys o
(Table<? extends R, ? extends C, ? extends V> table)
| 477 | * column keys is not in {@link #rowKeySet()} or {@link #columnKeySet()} |
| 478 | */ |
| 479 | @Override |
| 480 | public void putAll(Table<? extends R, ? extends C, ? extends V> table) { |
| 481 | super.putAll(table); |
| 482 | } |
| 483 | |
| 484 | /** |
| 485 | * Not supported. Use {@link #erase} instead. |