{@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)
| 492 | */ |
| 493 | |
| 494 | @Override |
| 495 | public void putAll(Table<? extends R, ? extends C, ? extends V> table) { |
| 496 | super.putAll(table); |
| 497 | } |
| 498 | |
| 499 | /** |
| 500 | * Not supported. Use {@link #erase} instead. |