Removes all mappings from this hash map, leaving it empty. @see #isEmpty @see #size
()
| 338 | * @see #size |
| 339 | */ |
| 340 | @Override |
| 341 | public void clear() { |
| 342 | if (elementCount > 0) { |
| 343 | elementCount = 0; |
| 344 | Arrays.fill(elementData, null); |
| 345 | modCount++; |
| 346 | } |
| 347 | } |
| 348 | |
| 349 | /** |
| 350 | * Computes the threshold for rehashing |