A sensible definition of #hashCode in terms of the iterator method of #entrySet. If you override #entrySet, you may wish to override #hashCode to forward to this implementation. @since 7.0
()
| 322 | |
| 323 | |
| 324 | protected int standardHashCode() { |
| 325 | return Sets.hashCodeImpl(entrySet()); |
| 326 | } |
| 327 | |
| 328 | /** |
| 329 | * A sensible definition of {@link #toString} in terms of the {@code iterator} |
no test coverage detected