Class HashMultiSet<E>
java.lang.Object
java.util.AbstractCollection<E>
org.apache.commons.collections4.multiset.AbstractMultiSet<E>
org.apache.commons.collections4.multiset.AbstractMapMultiSet<E>
org.apache.commons.collections4.multiset.HashMultiSet<E>
- Type Parameters:
E- the type held in the multiset
- All Implemented Interfaces:
Serializable,Iterable<E>,Collection<E>,MultiSet<E>
Implements
MultiSet, using a HashMap to provide the
data storage. This is the standard implementation of a multiset.
A MultiSet stores each object in the collection together with a
count of occurrences. Extra methods on the interface allow multiple copies
of an object to be added or removed at once.
- Since:
- 4.1
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.commons.collections4.multiset.AbstractMapMultiSet
AbstractMapMultiSet.EntrySetIterator<E>, AbstractMapMultiSet.MultiSetEntry<E>, AbstractMapMultiSet.MutableInteger, AbstractMapMultiSet.UniqueSetIterator<E>Nested classes/interfaces inherited from class org.apache.commons.collections4.multiset.AbstractMultiSet
AbstractMultiSet.AbstractEntry<E>, AbstractMultiSet.EntrySet<E>, AbstractMultiSet.UniqueSet<E>Nested classes/interfaces inherited from interface org.apache.commons.collections4.MultiSet
MultiSet.Entry<E> -
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionConstructs an emptyHashMultiSet.HashMultiSet(Collection<? extends E> coll) Constructs a multiset containing all the members of the given collection. -
Method Summary
Modifier and TypeMethodDescriptionprivate voidDeserializes the multiset in using a custom routine.private voidSerializes this object to an ObjectOutputStream.Methods inherited from class org.apache.commons.collections4.multiset.AbstractMapMultiSet
add, clear, contains, createEntrySetIterator, createUniqueSetIterator, doReadObject, doWriteObject, equals, getCount, getMap, hashCode, isEmpty, iterator, remove, setMap, size, toArray, toArray, uniqueElementsMethods inherited from class org.apache.commons.collections4.multiset.AbstractMultiSet
add, createEntrySet, createUniqueSet, entrySet, remove, removeAll, setCount, toString, uniqueSetMethods inherited from class java.util.AbstractCollection
addAll, containsAll, retainAllMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.util.Collection
addAll, parallelStream, removeIf, spliterator, streamMethods inherited from interface org.apache.commons.collections4.MultiSet
containsAll, retainAll
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDSerial version lock- See Also:
-
-
Constructor Details
-
HashMultiSet
public HashMultiSet()Constructs an emptyHashMultiSet. -
HashMultiSet
Constructs a multiset containing all the members of the given collection.- Parameters:
coll- a collection to copy into this multiset
-
-
Method Details
-
readObject
Deserializes the multiset in using a custom routine.- Parameters:
in- the input stream- Throws:
IOException- if an error occurs while reading from the streamClassNotFoundException- if an object read from the stream cannot be loaded
-
writeObject
Serializes this object to an ObjectOutputStream.- Parameters:
out- the target ObjectOutputStream.- Throws:
IOException- thrown when an I/O errors occur writing to the target stream.
-