Uses of Class
org.apache.commons.collections4.multiset.AbstractMultiSet
-
Packages that use AbstractMultiSet Package Description org.apache.commons.collections4.multiset This package contains implementations of theMultiSet
interface. -
-
Uses of AbstractMultiSet in org.apache.commons.collections4.multiset
Subclasses of AbstractMultiSet in org.apache.commons.collections4.multiset Modifier and Type Class Description class
AbstractMapMultiSet<E>
Abstract implementation of theMultiSet
interface to simplify the creation of subclass implementations.class
HashMultiSet<E>
ImplementsMultiSet
, using aHashMap
to provide the data storage.Fields in org.apache.commons.collections4.multiset declared as AbstractMultiSet Modifier and Type Field Description protected AbstractMultiSet<E>
AbstractMultiSet.UniqueSet. parent
The parent multisetConstructors in org.apache.commons.collections4.multiset with parameters of type AbstractMultiSet Constructor Description EntrySet(AbstractMultiSet<E> parent)
Constructs a new view of the MultiSet.UniqueSet(AbstractMultiSet<E> parent)
Constructs a new unique element view of the MultiSet.
-