Uses of Interface
eu.simuline.util.SortedMultiSet
-
Packages that use SortedMultiSet Package Description eu.simuline.util Utility classes: very inhomogeneous. -
-
Uses of SortedMultiSet in eu.simuline.util
Classes in eu.simuline.util that implement SortedMultiSet Modifier and Type Class Description (package private) static classCollectionsExt.ImmutableSortedMultiSet<E>A sorted multi-set which prevents being modified by throwing an exception for the modifying methods.classTreeMultiSet<T>Represents a sorted set with multiplicities based on aTreeMap.Fields in eu.simuline.util declared as SortedMultiSet Modifier and Type Field Description private SortedMultiSet<E>CollectionsExt.ImmutableSortedMultiSet. mSetMethods in eu.simuline.util that return SortedMultiSet Modifier and Type Method Description SortedMultiSet<E>CollectionsExt.ImmutableSortedMultiSet. headSet(E toElement)SortedMultiSet<T>SortedMultiSet. headSet(T toElement)Returns a view of the portion of this multi-set whose elements are strictly less thantoElement.SortedMultiSet<T>TreeMultiSet. headSet(T toElement)Returns a view of the portion of this multi-set whose elements are strictly less thantoElement.SortedMultiSet<E>CollectionsExt.ImmutableSortedMultiSet. subSet(E fromElement, E toElement)SortedMultiSet<T>SortedMultiSet. subSet(T fromElement, T toElement)Returns a view of the portion of this multi-set whose elements range fromfromElementinclusively totoElementexclusively.SortedMultiSet<T>TreeMultiSet. subSet(T fromElement, T toElement)Returns a view of the portion of this multi-set whose elements range fromfromElementinclusively totoElementexclusively.SortedMultiSet<E>CollectionsExt.ImmutableSortedMultiSet. tailSet(E fromElement)SortedMultiSet<T>SortedMultiSet. tailSet(T fromElement)Returns a view of the portion of this multi-set whose elements are greater than or equal tofromElement.SortedMultiSet<T>TreeMultiSet. tailSet(T fromElement)Returns a view of the portion of this multi-set whose elements are greater than or equal tofromElement.SortedMultiSet<E>CollectionsExt.ImmutableSortedMultiSet. unrestricted()Methods in eu.simuline.util with parameters of type SortedMultiSet Modifier and Type Method Description static <E> MultiSet<E>CollectionsExt. getImmutableSortedMultiSet(SortedMultiSet<E> mSet)Constructors in eu.simuline.util with parameters of type SortedMultiSet Constructor Description ImmutableSortedMultiSet(SortedMultiSet<E> mSet)Creates a new emptyImmutableSortedMultiSetwhich equalsmSetbut cannot be modified neither directly nor via its iterator.ImmutableSortedMultiSet(java.util.Set<CollectionsExt.Modification> mods, SortedMultiSet<E> mSet)
-