Remove the entire count for the given value @param value
(X value)
| 428 | * @param value |
| 429 | */ |
| 430 | public synchronized void removeAll(X value) { |
| 431 | Integer cnt = this.histogram.get(value); |
| 432 | if (cnt != null && cnt > 0) { |
| 433 | this._put(value, cnt * -1); |
| 434 | } |
| 435 | } |
| 436 | |
| 437 | /** |
| 438 | * Returns the current count for the given value If the value was never entered into the |