Class SynchronizedMultiSet<E>
- java.lang.Object
-
- org.apache.commons.collections4.collection.SynchronizedCollection<E>
-
- org.apache.commons.collections4.multiset.SynchronizedMultiSet<E>
-
- Type Parameters:
E
- the type held in the multiset
- All Implemented Interfaces:
Serializable
,Iterable<E>
,Collection<E>
,MultiSet<E>
public class SynchronizedMultiSet<E> extends SynchronizedCollection<E> implements MultiSet<E>
Decorates anotherMultiSet
to synchronize its behaviour for a multi-threaded environment.Methods are synchronized, then forwarded to the decorated multiset. Iterators must be separately synchronized around the loop.
- Since:
- 4.1
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.commons.collections4.MultiSet
MultiSet.Entry<E>
-
-
Field Summary
-
Fields inherited from class org.apache.commons.collections4.collection.SynchronizedCollection
lock
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
SynchronizedMultiSet(MultiSet<E> multiset)
Constructor that wraps (not copies).protected
SynchronizedMultiSet(MultiSet<E> multiset, Object lock)
Constructor that wraps (not copies).
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
add(E object, int count)
Adds a number of occurrences of the specified object to the MultiSet.protected MultiSet<E>
decorated()
Gets the multiset being decorated.Set<MultiSet.Entry<E>>
entrySet()
Returns aSet
of all entries contained in the MultiSet.boolean
equals(Object object)
Compares this MultiSet to another object.int
getCount(Object object)
Returns the number of occurrences of the given object currently in the MultiSet.int
hashCode()
Gets a hash code for the MultiSet compatible with the definition of equals.int
remove(Object object, int count)
Removes a number of occurrences of the specified object from the MultiSet.int
setCount(E object, int count)
Sets the number of occurrences of the specified object in the MultiSet to the given count.static <E> SynchronizedMultiSet<E>
synchronizedMultiSet(MultiSet<E> multiset)
Factory method to create a synchronized multiset.Set<E>
uniqueSet()
Returns aSet
of unique elements in the MultiSet.-
Methods inherited from class org.apache.commons.collections4.collection.SynchronizedCollection
add, addAll, clear, contains, containsAll, isEmpty, iterator, remove, removeAll, retainAll, size, synchronizedCollection, toArray, toArray, toString
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Collection
addAll, clear, contains, isEmpty, parallelStream, removeIf, spliterator, stream, toArray, toArray, toArray
-
-
-
-
Constructor Detail
-
SynchronizedMultiSet
protected SynchronizedMultiSet(MultiSet<E> multiset)
Constructor that wraps (not copies).- Parameters:
multiset
- the multiset to decorate, must not be null- Throws:
NullPointerException
- if multiset is null
-
SynchronizedMultiSet
protected SynchronizedMultiSet(MultiSet<E> multiset, Object lock)
Constructor that wraps (not copies).- Parameters:
multiset
- the multiset to decorate, must not be nulllock
- the lock to use, must not be null- Throws:
NullPointerException
- if multiset or lock is null
-
-
Method Detail
-
synchronizedMultiSet
public static <E> SynchronizedMultiSet<E> synchronizedMultiSet(MultiSet<E> multiset)
Factory method to create a synchronized multiset.- Type Parameters:
E
- the type of the elements in the multiset- Parameters:
multiset
- the multiset to decorate, must not be null- Returns:
- a new synchronized MultiSet
- Throws:
NullPointerException
- if multiset is null
-
decorated
protected MultiSet<E> decorated()
Gets the multiset being decorated.- Overrides:
decorated
in classSynchronizedCollection<E>
- Returns:
- the decorated multiset
-
equals
public boolean equals(Object object)
Description copied from interface:MultiSet
Compares this MultiSet to another object.This MultiSet equals another object if it is also a MultiSet that contains the same number of occurrences of the same elements.
- Specified by:
equals
in interfaceCollection<E>
- Specified by:
equals
in interfaceMultiSet<E>
- Overrides:
equals
in classSynchronizedCollection<E>
- Parameters:
object
- the object to compare to- Returns:
- true if equal
-
hashCode
public int hashCode()
Description copied from interface:MultiSet
Gets a hash code for the MultiSet compatible with the definition of equals. The hash code is defined as the sum total of a hash code for each element. The per element hash code is defined as(e==null ? 0 : e.hashCode()) ^ noOccurances)
.- Specified by:
hashCode
in interfaceCollection<E>
- Specified by:
hashCode
in interfaceMultiSet<E>
- Overrides:
hashCode
in classSynchronizedCollection<E>
- Returns:
- the hash code of the MultiSet
-
add
public int add(E object, int count)
Description copied from interface:MultiSet
Adds a number of occurrences of the specified object to the MultiSet.If the object is already in the
MultiSet.uniqueSet()
then increment its count as reported byMultiSet.getCount(Object)
. Otherwise add it to theMultiSet.uniqueSet()
and report its count asoccurrences
.
-
remove
public int remove(Object object, int count)
Description copied from interface:MultiSet
Removes a number of occurrences of the specified object from the MultiSet.If the number of occurrences to remove is greater than the actual number of occurrences in the multiset, the object will be removed from the multiset.
-
getCount
public int getCount(Object object)
Description copied from interface:MultiSet
Returns the number of occurrences of the given object currently in the MultiSet. If the object does not exist in the multiset, return 0.
-
setCount
public int setCount(E object, int count)
Description copied from interface:MultiSet
Sets the number of occurrences of the specified object in the MultiSet to the given count.If the provided count is zero, the object will be removed from the
MultiSet.uniqueSet()
.
-
uniqueSet
public Set<E> uniqueSet()
Description copied from interface:MultiSet
Returns aSet
of unique elements in the MultiSet.Uniqueness constraints are the same as those in
Set
.The returned set is backed by this multiset, so any change to either is immediately reflected in the other. Only removal operations are supported, in which case all occurrences of the element are removed from the backing multiset.
-
entrySet
public Set<MultiSet.Entry<E>> entrySet()
Description copied from interface:MultiSet
Returns aSet
of all entries contained in the MultiSet.The returned set is backed by this multiset, so any change to either is immediately reflected in the other.
-
-