()
| 442 | /// |
| 443 | /// - #equals(Object) |
| 444 | @Override |
| 445 | public int hashCode() { |
| 446 | int result = 0; |
| 447 | Iterator<Map.Entry<K, V>> it = entrySet().iterator(); |
| 448 | while (it.hasNext()) { |
| 449 | result += it.next().hashCode(); |
| 450 | } |
| 451 | return result; |
| 452 | } |
| 453 | |
| 454 | /// Returns whether this map is empty. |
| 455 | /// |