Returns a view of the contents of this multiset, grouped into {@code Multiset.Entry} instances, each providing an element of the multiset and the count of that element. This set contains exactly one entry for each distinct element in the multiset (thus it always has the same size as the {@link #elem
()
| 261 | * @return a set of entries representing the data of this multiset |
| 262 | */ |
| 263 | Set<Entry<E>> entrySet(); |
| 264 | |
| 265 | /** |
| 266 | * An unmodifiable element-count pair for a multiset. The {@link Multiset#entrySet} method returns |
no outgoing calls