Removes all mappings from this hash map, leaving it empty. @see #isEmpty @see #size
()
| 351 | * @see #size |
| 352 | */ |
| 353 | @Override |
| 354 | public void clear() { |
| 355 | if (elementCount > 0) { |
| 356 | elementCount = 0; |
| 357 | Arrays.fill(elementData, null); |
| 358 | modCount++; |
| 359 | } |
| 360 | } |
| 361 | |
| 362 | /** |
| 363 | * Returns a shallow copy of this map. |