Package eu.bandm.tools.util.multi
Interface SortedMultiset<A>
- Type Parameters:
A
- the type of the contained elements.
- All Superinterfaces:
Iterable<A>
,Multiset<A>
,Serializable
- All Known Implementing Classes:
TreeMultiset
A multiset with a defined order on the elements.
-
Method Summary
Methods inherited from interface java.lang.Iterable
forEach, iterator, spliterator
Methods inherited from interface eu.bandm.tools.util.multi.Multiset
add, add, addAll, clear, contains, containsUnchecked, count, countAll, countAllUnchecked, countUnchecked, domain, isEmpty, remove, removeAll, removeAllUnchecked, removeDomain, removeDomainUnchecked, removeUnchecked, retainAll, retainAllUnchecked, supportMap
-
Method Details
-
comparator
Comparator<? super A> comparator()Deliver the comparator on the elements.- Returns:
- the comparator on the elements.
-