Interface SortedMultiSet<T>

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.util.SortedSet<T> baseSet()
      returns an unmodifiable set of unique objects in the multiset.
      java.util.Comparator<? super T> comparator()  
      • Methods inherited from interface java.util.Collection

        add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, parallelStream, remove, removeAll, removeIf, retainAll, size, spliterator, stream, toArray, toArray, toArray
      • Methods inherited from interface java.lang.Iterable

        forEach
    • Method Detail

      • comparator

        java.util.Comparator<? super T> comparator()
      • baseSet

        java.util.SortedSet<T> baseSet()
        returns an unmodifiable set of unique objects in the multiset.
        Specified by:
        baseSet in interface MultiSet<T>
        Returns:
        an unmodifiable set of unique objects in the multiset.