Class UnmodifiableMultiSet<E>
- Type Parameters:
E- the type held in the multiset
- All Implemented Interfaces:
Serializable,Iterable<E>,Collection<E>,MultiSet<E>,Unmodifiable
MultiSet to ensure it can't be altered.
Attempts to modify it will result in an UnsupportedOperationException.
- Since:
- 4.1
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.apache.commons.collections4.MultiSet
MultiSet.Entry<E> -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final longSerialization version -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivateUnmodifiableMultiSet(MultiSet<? extends E> multiset) Constructor that wraps (not copies). -
Method Summary
Modifier and TypeMethodDescriptionbooleanAdds one copy of the specified object to the MultiSet.intAdds a number of occurrences of the specified object to the MultiSet.booleanaddAll(Collection<? extends E> coll) voidclear()entrySet()Returns aSetof all entries contained in the MultiSet.iterator()Returns anIteratorover the entire set of members, including copies due to cardinality.private voidRead the collection in using a custom routine.booleanRemoves one occurrence of the given object from the MultiSet.intRemoves a number of occurrences of the specified object from the MultiSet.booleanremoveAll(Collection<?> coll) Remove all occurrences of all elements from this MultiSet represented in the given collection.booleanbooleanretainAll(Collection<?> coll) Remove any elements of this MultiSet that are not contained in the given collection.intSets the number of occurrences of the specified object in the MultiSet to the given count.Returns aSetof unique elements in the MultiSet.static <E> MultiSet<E> unmodifiableMultiSet(MultiSet<? extends E> multiset) Factory method to create an unmodifiable multiset.private voidWrite the collection out using a custom routine.Methods inherited from class org.apache.commons.collections4.multiset.AbstractMultiSetDecorator
decorated, equals, getCount, hashCodeMethods inherited from class org.apache.commons.collections4.collection.AbstractCollectionDecorator
contains, containsAll, isEmpty, setCollection, size, toArray, toArray, toStringMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.util.Collection
contains, isEmpty, parallelStream, spliterator, stream, toArray, toArrayMethods inherited from interface org.apache.commons.collections4.MultiSet
containsAll, size
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDSerialization version- See Also:
-
-
Constructor Details
-
UnmodifiableMultiSet
Constructor that wraps (not copies).- Parameters:
multiset- the multiset to decorate, may not be null- Throws:
NullPointerException- if multiset is null
-
-
Method Details
-
unmodifiableMultiSet
Factory method to create an unmodifiable multiset.If the multiset passed in is already unmodifiable, it is returned.
- Type Parameters:
E- the type of the elements in the multiset- Parameters:
multiset- the multiset to decorate, may not be null- Returns:
- an unmodifiable MultiSet
- Throws:
NullPointerException- if multiset is null
-
writeObject
Write the collection out using a custom routine.- Parameters:
out- the output stream- Throws:
IOException- if an error occurs while writing to the stream
-
readObject
Read the collection 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 can not be loadedClassCastException- if deserialised object has wrong type
-
iterator
Description copied from interface:MultiSetReturns anIteratorover the entire set of members, including copies due to cardinality. This iterator is fail-fast and will not tolerate concurrent modifications. -
add
Description copied from interface:MultiSetAdds one copy 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 as 1.- Specified by:
addin interfaceCollection<E>- Specified by:
addin interfaceMultiSet<E>- Overrides:
addin classAbstractCollectionDecorator<E>- Parameters:
object- the object to add- Returns:
truealways, as the size of the MultiSet is increased in any case
-
addAll
- Specified by:
addAllin interfaceCollection<E>- Overrides:
addAllin classAbstractCollectionDecorator<E>
-
clear
public void clear()- Specified by:
clearin interfaceCollection<E>- Overrides:
clearin classAbstractCollectionDecorator<E>
-
remove
Description copied from interface:MultiSetRemoves one occurrence of the given object from the MultiSet.If the number of occurrences after this operations is reduced to zero, the object will be removed from the
MultiSet.uniqueSet().- Specified by:
removein interfaceCollection<E>- Specified by:
removein interfaceMultiSet<E>- Overrides:
removein classAbstractCollectionDecorator<E>- Parameters:
object- the object to remove- Returns:
trueif this call changed the collection
-
removeIf
- Specified by:
removeIfin interfaceCollection<E>- Overrides:
removeIfin classAbstractCollectionDecorator<E>- Since:
- 4.4
-
removeAll
Description copied from interface:MultiSetRemove all occurrences of all elements from this MultiSet represented in the given collection.- Specified by:
removeAllin interfaceCollection<E>- Specified by:
removeAllin interfaceMultiSet<E>- Overrides:
removeAllin classAbstractCollectionDecorator<E>- Parameters:
coll- the collection of elements to remove- Returns:
trueif this call changed the multiset
-
retainAll
Description copied from interface:MultiSetRemove any elements of this MultiSet that are not contained in the given collection.- Specified by:
retainAllin interfaceCollection<E>- Specified by:
retainAllin interfaceMultiSet<E>- Overrides:
retainAllin classAbstractCollectionDecorator<E>- Parameters:
coll- the collection of elements to retain- Returns:
trueif this call changed the multiset
-
setCount
Description copied from interface:MultiSetSets 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().- Specified by:
setCountin interfaceMultiSet<E>- Overrides:
setCountin classAbstractMultiSetDecorator<E>- Parameters:
object- the object to updatecount- the number of occurrences of the object- Returns:
- the number of occurrences of the object before this operation, zero if the object was not contained in the multiset
-
add
Description copied from interface:MultiSetAdds 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.- Specified by:
addin interfaceMultiSet<E>- Overrides:
addin classAbstractMultiSetDecorator<E>- Parameters:
object- the object to addcount- the number of occurrences to add, may be zero, in which case no change is made to the multiset- Returns:
- the number of occurrences of the object in the multiset before this operation; possibly zero
-
remove
Description copied from interface:MultiSetRemoves 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.
- Specified by:
removein interfaceMultiSet<E>- Overrides:
removein classAbstractMultiSetDecorator<E>- Parameters:
object- the object to removecount- the number of occurrences to remove, may be zero, in which case no change is made to the multiset- Returns:
- the number of occurrences of the object in the multiset before the operation; possibly zero
-
uniqueSet
Description copied from interface:MultiSetReturns aSetof 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
Description copied from interface:MultiSetReturns aSetof 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.
-