Package org.apache.commons.collections4.multiset
This package contains implementations of the
MultiSet interface.
A multiset stores an object and a count of the number of occurrences of the object.
The following implementations are provided in the package:
- HashMultiSet - implementation that uses a HashMap to store the data
The following decorators are provided in the package:
- Predicated - ensures that only elements that are valid according to a predicate can be added
- Synchronized - synchronizes method access for multi-threaded environments
- Unmodifiable - ensures the multiset cannot be altered
-
Class Summary Class Description AbstractMapMultiSet<E> Abstract implementation of theMultiSetinterface to simplify the creation of subclass implementations.AbstractMapMultiSet.EntrySetIterator<E> Inner class EntrySetIterator.AbstractMapMultiSet.MultiSetEntry<E> Inner class MultiSetEntry.AbstractMapMultiSet.MutableInteger Mutable integer class for storing the data.AbstractMapMultiSet.UniqueSetIterator<E> Inner class UniqueSetIterator.AbstractMultiSet<E> Abstract implementation of theMultiSetinterface to simplify the creation of subclass implementations.AbstractMultiSet.AbstractEntry<E> Inner class AbstractEntry.AbstractMultiSet.EntrySet<E> Inner class EntrySet.AbstractMultiSet.UniqueSet<E> Inner class UniqueSet.AbstractMultiSetDecorator<E> Decorates anotherMultSetto provide additional behaviour.HashMultiSet<E> ImplementsMultiSet, using aHashMapto provide the data storage.PredicatedMultiSet<E> Decorates anotherMultiSetto validate that additions match a specified predicate.SynchronizedMultiSet<E> Decorates anotherMultiSetto synchronize its behaviour for a multi-threaded environment.UnmodifiableMultiSet<E> Decorates anotherMultiSetto ensure it can't be altered.