Uses of Interface
eu.simuline.util.MultiSet
-
Packages that use MultiSet Package Description eu.simuline.util Utility classes: very inhomogeneous. -
-
Uses of MultiSet in eu.simuline.util
Classes in eu.simuline.util with type parameters of type MultiSet Modifier and Type Class Description (package private) static classCollectionsExt.AbstractImmutableMultiSet<C extends MultiSet<E>,E>A MultiSet which prevents being modified by throwing an exception for the modifying methods.Subinterfaces of MultiSet in eu.simuline.util Modifier and Type Interface Description interfaceSortedMultiSet<T>Represents a sorted set with multiplicities.Classes in eu.simuline.util that implement MultiSet Modifier and Type Class Description classAbstractMultiSet<MAP extends java.util.Map<T,MultiSet.Multiplicity>,T>Represents an abstract MultiSet based on aMap.(package private) static classCollectionsExt.AbstractImmutableMultiSet<C extends MultiSet<E>,E>A MultiSet which prevents being modified by throwing an exception for the modifying methods.(package private) static classCollectionsExt.ImmutableMultiSet<E>A multi-set which prevents being modified by throwing an exception for the modifying methods.(package private) static classCollectionsExt.ImmutableSortedMultiSet<E>A sorted multi-set which prevents being modified by throwing an exception for the modifying methods.classHashMultiSet<T>Represents a set with multiplicities based on aHashMap.classTreeMultiSet<T>Represents a sorted set with multiplicities based on aTreeMap.Fields in eu.simuline.util declared as MultiSet Modifier and Type Field Description private MultiSet<E>CollectionsExt.ImmutableMultiSet. mSetThe enclosed multi-set containing the elements of this multi-set.Methods in eu.simuline.util that return MultiSet Modifier and Type Method Description static <E> MultiSet<E>CollectionsExt. getImmutableMultiSet(MultiSet<E> mSet)static <E> MultiSet<E>CollectionsExt. getImmutableSortedMultiSet(SortedMultiSet<E> mSet)MultiSet<E>CollectionsExt.ImmutableMultiSet. unrestricted()Methods in eu.simuline.util with parameters of type MultiSet Modifier and Type Method Description booleanAbstractMultiSet. addAll(MultiSet<? extends T> mvs)Addsmvselementwise to this multi set increasing multiplicities and returns whether this caused a change of the underlying set. **** strange implementation; also: changebooleanCollectionsExt.AbstractImmutableMultiSet. addAll(MultiSet<? extends E> mvs)booleanMultiSet. addAll(MultiSet<? extends T> mvs)Addsmvselementwise to this multi set taking multiplicities into account and returns whether this caused a change of the underlying set. **** strange implementation; also: changestatic <E> MultiSet<E>CollectionsExt. getImmutableMultiSet(MultiSet<E> mSet)Constructors in eu.simuline.util with parameters of type MultiSet Constructor Description HashMultiSet(MultiSet<? extends T> other)Copy constructor.ImmutableMultiSet(MultiSet<E> mSet)Creates a new emptyImmutableMultiSetwhich equalsmSetbut cannot be modified neither directly nor via its iterator.MultiSetIteratorImpl(MultiSet<T> multiSet)TreeMultiSet(MultiSet<? extends T> other)Copy constructor.
-