- All Implemented Interfaces:
Multiset<E>, SortedMultiset<E>, Iterable<E>, Collection<E>
Warning: The methods of ForwardingSortedMultiset forward
indiscriminately to the methods of the delegate. For example, overriding ForwardingMultiset.add(Object, int) alone will not change the behavior of ForwardingCollection.add(Object), which can
lead to unexpected behavior. In this case, you should override add(Object) as well,
either providing your own implementation, or delegating to the provided standardAdd
method.
default method warning: This class does not forward calls to
default methods. Instead, it inherits their default implementations. When those implementations
invoke methods, they invoke methods on the ForwardingSortedMultiset.
The standard methods and any collection views they return are not guaranteed to be
thread-safe, even when all of the methods that they depend on are thread-safe.
- Since:
- 15.0
- Author:
- Louis Wasserman
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprotected classA skeleton implementation of a descending multiset view.protected classA sensible implementation ofSortedMultiset.elementSet()in terms of the following methods:Collection.clear(),SortedMultiset.comparator(),Multiset.contains(Object),Multiset.containsAll(Collection),Multiset.count(Object),SortedMultiset.firstEntry()SortedMultiset.headMultiset(E, BoundType),Collection.isEmpty(),SortedMultiset.lastEntry(),SortedMultiset.subMultiset(E, BoundType, E, BoundType),SortedMultiset.tailMultiset(E, BoundType), thesize()anditerator()methods ofSortedMultiset.entrySet(), andMultiset.remove(Object, int).Nested classes/interfaces inherited from interface Multiset
Multiset.Entry<E>Modifier and TypeInterfaceDescriptionstatic interfaceMultiset.Entry<E extends @Nullable Object>An unmodifiable element-count pair for a multiset. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedConstructor for use by subclasses. -
Method Summary
Modifier and TypeMethodDescriptionComparator<? super E> Returns the comparator that orders this multiset, orOrdering.natural()if the natural ordering of the elements is used.protected abstract SortedMultiset<E> delegate()Returns the backing delegate instance that methods are forwarded to.Returns a descending view of this multiset.Returns the set of distinct elements contained in this multiset.Returns the entry of the first element in this multiset, ornullif this multiset is empty.headMultiset(E upperBound, BoundType boundType) Returns a view of this multiset restricted to the elements less thanupperBound, optionally includingupperBounditself.Returns the entry of the last element in this multiset, ornullif this multiset is empty.Returns and removes the entry associated with the lowest element in this multiset, or returnsnullif this multiset is empty.Returns and removes the entry associated with the greatest element in this multiset, or returnsnullif this multiset is empty.protected @Nullable Multiset.Entry<E> A sensible definition offirstEntry()in terms ofentrySet().iterator().protected @Nullable Multiset.Entry<E> A sensible definition oflastEntry()in terms ofdescendingMultiset().entrySet().iterator().protected @Nullable Multiset.Entry<E> A sensible definition ofpollFirstEntry()in terms ofentrySet().iterator().protected @Nullable Multiset.Entry<E> A sensible definition ofpollLastEntry()in terms ofdescendingMultiset().entrySet().iterator().protected SortedMultiset<E> standardSubMultiset(E lowerBound, BoundType lowerBoundType, E upperBound, BoundType upperBoundType) A sensible definition ofsubMultiset(Object, BoundType, Object, BoundType)in terms ofheadMultisetandtailMultiset.subMultiset(E lowerBound, BoundType lowerBoundType, E upperBound, BoundType upperBoundType) Returns a view of this multiset restricted to the range betweenlowerBoundandupperBound.tailMultiset(E lowerBound, BoundType boundType) Returns a view of this multiset restricted to the elements greater thanlowerBound, optionally includinglowerBounditself.Methods inherited from class ForwardingMultiset
add, count, entrySet, equals, hashCode, remove, setCount, setCount, standardAdd, standardAddAll, standardClear, standardContains, standardCount, standardEquals, standardHashCode, standardIterator, standardRemove, standardRemoveAll, standardRetainAll, standardSetCount, standardSetCount, standardSize, standardToStringModifier and TypeMethodDescriptionintAdds a number of occurrences of an element to this multiset.intReturns the number of occurrences of an element in this multiset (the count of the element).entrySet()Returns a view of the contents of this multiset, grouped intoMultiset.Entryinstances, each providing an element of the multiset and the count of that element.booleanCompares the specified object with this multiset for equality.inthashCode()Returns the hash code for this multiset.intRemoves a number of occurrences of the specified element from this multiset.intAdds or removes the necessary occurrences of an element such that the element attains the desired count.booleanConditionally sets the count of an element to a new value, as described inMultiset.setCount(Object, int), provided that the element has the expected current count.protected booleanstandardAdd(E element) A sensible definition ofForwardingCollection.add(Object)in terms ofForwardingMultiset.add(Object, int).protected booleanstandardAddAll(Collection<? extends E> elementsToAdd) A sensible definition ofForwardingCollection.addAll(Collection)in terms ofForwardingCollection.add(Object)andForwardingMultiset.add(Object, int).protected voidA sensible definition ofForwardingCollection.clear()in terms of theiteratormethod ofForwardingMultiset.entrySet().protected booleanstandardContains(@Nullable Object object) A sensible definition ofForwardingCollection.contains(Object)in terms ofForwardingMultiset.count(Object).protected intstandardCount(@Nullable Object object) A sensible, albeit inefficient, definition ofForwardingMultiset.count(Object)in terms ofForwardingMultiset.entrySet().protected booleanstandardEquals(@Nullable Object object) A sensible, albeit inefficient, definition ofForwardingMultiset.equals(Object)in terms ofentrySet().size()andForwardingMultiset.count(Object).protected intA sensible definition ofForwardingMultiset.hashCode()asentrySet().hashCode().A sensible definition ofForwardingCollection.iterator()in terms ofForwardingMultiset.entrySet()andForwardingCollection.remove(Object).protected booleanstandardRemove(@Nullable Object element) A sensible definition ofForwardingCollection.remove(Object)in terms ofForwardingMultiset.remove(Object, int).protected booleanstandardRemoveAll(Collection<?> elementsToRemove) A sensible definition ofForwardingCollection.removeAll(Collection)in terms of theremoveAllmethod ofForwardingMultiset.elementSet().protected booleanstandardRetainAll(Collection<?> elementsToRetain) A sensible definition ofForwardingCollection.retainAll(Collection)in terms of theretainAllmethod ofForwardingMultiset.elementSet().protected intstandardSetCount(E element, int count) A sensible definition ofForwardingMultiset.setCount(Object, int)in terms ofForwardingMultiset.count(Object),ForwardingMultiset.add(Object, int), andForwardingMultiset.remove(Object, int).protected booleanstandardSetCount(E element, int oldCount, int newCount) A sensible definition ofForwardingMultiset.setCount(Object, int, int)in terms ofForwardingMultiset.count(Object)andForwardingMultiset.setCount(Object, int).protected intA sensible, albeit inefficient, definition ofForwardingCollection.size()in terms ofForwardingMultiset.entrySet().protected StringA sensible definition ofForwardingObject.toString()asentrySet().toString().Methods inherited from class ForwardingCollection
add, addAll, clear, contains, containsAll, isEmpty, iterator, remove, removeAll, retainAll, size, standardContainsAll, standardIsEmpty, standardToArray, standardToArray, toArray, toArrayModifier and TypeMethodDescriptionbooleanbooleanaddAll(Collection<? extends E> collection) voidclear()booleanbooleancontainsAll(Collection<?> collection) booleanisEmpty()iterator()booleanbooleanremoveAll(Collection<?> collection) booleanretainAll(Collection<?> collection) intsize()protected booleanstandardContainsAll(Collection<?> collection) A sensible definition ofForwardingCollection.containsAll(Collection)in terms ofForwardingCollection.contains(Object).protected booleanA sensible definition ofForwardingCollection.isEmpty()as!iterator().hasNext.A sensible definition ofForwardingCollection.toArray()in terms ofForwardingCollection.toArray(Object[]).standardToArray(T[] array) A sensible definition ofForwardingCollection.toArray(Object[])in terms ofForwardingCollection.size()andForwardingCollection.iterator().toArray()toArray(T[] array) Methods inherited from class ForwardingObject
toStringMethods inherited from interface Collection
parallelStream, removeIf, spliterator, stream, toArrayMethods inherited from interface Multiset
add, contains, containsAll, remove, removeAll, retainAll, size, toStringModifier and TypeMethodDescriptionbooleanAdds a single occurrence of the specified element to this multiset.booleanDetermines whether this multiset contains the specified element.booleancontainsAll(Collection<?> elements) Returnstrueif this multiset contains at least one occurrence of each element in the specified collection.booleanRemoves a single occurrence of the specified element from this multiset, if present.booleanremoveAll(Collection<?> c) booleanretainAll(Collection<?> c) intsize()Returns the total number of all occurrences of all elements in this multiset.toString()Methods inherited from interface SortedMultiset
entrySet, iterator
-
Constructor Details
-
ForwardingSortedMultiset
protected ForwardingSortedMultiset()Constructor for use by subclasses.
-
-
Method Details
-
delegate
Description copied from class:ForwardingObjectReturns the backing delegate instance that methods are forwarded to. Abstract subclasses generally override this method with an abstract method that has a more specific return type, such asForwardingSet.delegate(). Concrete subclasses override this method to supply the instance being decorated.- Specified by:
delegatein classForwardingMultiset<E extends @Nullable Object>
-
elementSet
Description copied from interface:MultisetReturns the set of distinct elements contained in this multiset. The element set is backed by the same data as the multiset, so any change to either is immediately reflected in the other. The order of the elements in the element set is unspecified.If the element set supports any removal operations, these necessarily cause all occurrences of the removed element(s) to be removed from the multiset. Implementations are not expected to support the add operations, although this is possible.
A common use for the element set is to find the number of distinct elements in the multiset:
elementSet().size().- Specified by:
elementSetin interfaceMultiset<E extends @Nullable Object>- Specified by:
elementSetin interfaceSortedMultiset<E extends @Nullable Object>- Overrides:
elementSetin classForwardingMultiset<E extends @Nullable Object>- Returns:
- a view of the set of distinct elements in this multiset
-
comparator
Description copied from interface:SortedMultisetReturns the comparator that orders this multiset, orOrdering.natural()if the natural ordering of the elements is used.- Specified by:
comparatorin interfaceSortedMultiset<E extends @Nullable Object>
-
descendingMultiset
Description copied from interface:SortedMultisetReturns a descending view of this multiset. Modifications made to either map will be reflected in the other.- Specified by:
descendingMultisetin interfaceSortedMultiset<E extends @Nullable Object>
-
firstEntry
Description copied from interface:SortedMultisetReturns the entry of the first element in this multiset, ornullif this multiset is empty.- Specified by:
firstEntryin interfaceSortedMultiset<E extends @Nullable Object>
-
standardFirstEntry
A sensible definition offirstEntry()in terms ofentrySet().iterator().If you override
ForwardingMultiset.entrySet(), you may wish to overridefirstEntry()to forward to this implementation. -
lastEntry
Description copied from interface:SortedMultisetReturns the entry of the last element in this multiset, ornullif this multiset is empty.- Specified by:
lastEntryin interfaceSortedMultiset<E extends @Nullable Object>
-
standardLastEntry
A sensible definition oflastEntry()in terms ofdescendingMultiset().entrySet().iterator().If you override
descendingMultiset()orForwardingMultiset.entrySet(), you may wish to overridefirstEntry()to forward to this implementation. -
pollFirstEntry
Description copied from interface:SortedMultisetReturns and removes the entry associated with the lowest element in this multiset, or returnsnullif this multiset is empty.- Specified by:
pollFirstEntryin interfaceSortedMultiset<E extends @Nullable Object>
-
standardPollFirstEntry
A sensible definition ofpollFirstEntry()in terms ofentrySet().iterator().If you override
ForwardingMultiset.entrySet(), you may wish to overridepollFirstEntry()to forward to this implementation. -
pollLastEntry
Description copied from interface:SortedMultisetReturns and removes the entry associated with the greatest element in this multiset, or returnsnullif this multiset is empty.- Specified by:
pollLastEntryin interfaceSortedMultiset<E extends @Nullable Object>
-
standardPollLastEntry
A sensible definition ofpollLastEntry()in terms ofdescendingMultiset().entrySet().iterator().If you override
descendingMultiset()orForwardingMultiset.entrySet(), you may wish to overridepollLastEntry()to forward to this implementation. -
headMultiset
Description copied from interface:SortedMultisetReturns a view of this multiset restricted to the elements less thanupperBound, optionally includingupperBounditself. The returned multiset is a view of this multiset, so changes to one will be reflected in the other. The returned multiset supports all operations that this multiset supports.The returned multiset will throw an
IllegalArgumentExceptionon attempts to add elements outside its range.- Specified by:
headMultisetin interfaceSortedMultiset<E extends @Nullable Object>
-
subMultiset
public SortedMultiset<E> subMultiset(E lowerBound, BoundType lowerBoundType, E upperBound, BoundType upperBoundType) Description copied from interface:SortedMultisetReturns a view of this multiset restricted to the range betweenlowerBoundandupperBound. The returned multiset is a view of this multiset, so changes to one will be reflected in the other. The returned multiset supports all operations that this multiset supports.The returned multiset will throw an
IllegalArgumentExceptionon attempts to add elements outside its range.This method is equivalent to
tailMultiset(lowerBound, lowerBoundType).headMultiset(upperBound, upperBoundType).- Specified by:
subMultisetin interfaceSortedMultiset<E extends @Nullable Object>
-
standardSubMultiset
protected SortedMultiset<E> standardSubMultiset(E lowerBound, BoundType lowerBoundType, E upperBound, BoundType upperBoundType) A sensible definition ofsubMultiset(Object, BoundType, Object, BoundType)in terms ofheadMultisetandtailMultiset.If you override either of these methods, you may wish to override
subMultiset(Object, BoundType, Object, BoundType)to forward to this implementation. -
tailMultiset
Description copied from interface:SortedMultisetReturns a view of this multiset restricted to the elements greater thanlowerBound, optionally includinglowerBounditself. The returned multiset is a view of this multiset, so changes to one will be reflected in the other. The returned multiset supports all operations that this multiset supports.The returned multiset will throw an
IllegalArgumentExceptionon attempts to add elements outside its range.- Specified by:
tailMultisetin interfaceSortedMultiset<E extends @Nullable Object>
-