Uses of Interface
org.apache.commons.collections4.SortedMultiSet
Packages that use SortedMultiSet
Package
Description
Interfaces and utilities shared across all packages.
Implements the
MultiSet interface.-
Uses of SortedMultiSet in org.apache.commons.collections4
Fields in org.apache.commons.collections4 declared as SortedMultiSetModifier and TypeFieldDescriptionstatic final SortedMultiSetMultiSetUtils.EMPTY_SORTED_MULTISETAn empty unmodifiable sorted multiset.Methods in org.apache.commons.collections4 that return SortedMultiSetModifier and TypeMethodDescriptionstatic <E> SortedMultiSet<E> MultiSetUtils.emptySortedMultiSet()Gets an emptySortedMultiSet.static <E> SortedMultiSet<E> MultiSetUtils.predicatedSortedMultiSet(SortedMultiSet<E> multiset, Predicate<? super E> predicate) Returns a predicated (validating) sorted multiset backed by the given sorted multiset.static <E> SortedMultiSet<E> MultiSetUtils.synchronizedSortedMultiSet(SortedMultiSet<E> multiset) Returns a synchronized (thread-safe) sorted multiset backed by the given sorted multiset.static <E> SortedMultiSet<E> MultiSetUtils.transformingSortedMultiSet(SortedMultiSet<E> multiset, Transformer<? super E, ? extends E> transformer) Returns a transformed sorted multiset backed by the given multiset.static <E> SortedMultiSet<E> MultiSetUtils.unmodifiableSortedMultiSet(SortedMultiSet<? extends E> multiset) Returns an unmodifiable view of the given sorted multiset.Methods in org.apache.commons.collections4 with parameters of type SortedMultiSetModifier and TypeMethodDescriptionstatic <E> SortedMultiSet<E> MultiSetUtils.predicatedSortedMultiSet(SortedMultiSet<E> multiset, Predicate<? super E> predicate) Returns a predicated (validating) sorted multiset backed by the given sorted multiset.static <E> SortedMultiSet<E> MultiSetUtils.synchronizedSortedMultiSet(SortedMultiSet<E> multiset) Returns a synchronized (thread-safe) sorted multiset backed by the given sorted multiset.static <E> SortedMultiSet<E> MultiSetUtils.transformingSortedMultiSet(SortedMultiSet<E> multiset, Transformer<? super E, ? extends E> transformer) Returns a transformed sorted multiset backed by the given multiset.static <E> SortedMultiSet<E> MultiSetUtils.unmodifiableSortedMultiSet(SortedMultiSet<? extends E> multiset) Returns an unmodifiable view of the given sorted multiset. -
Uses of SortedMultiSet in org.apache.commons.collections4.multiset
Classes in org.apache.commons.collections4.multiset that implement SortedMultiSetModifier and TypeClassDescriptionclassDecorates anotherSortedMultiSetto provide additional behavior.classDecorates anotherSortedMultiSetto validate that additions match a specified predicate.classDecorates anotherSortedMultiSetto synchronize its behavior for a multithreaded environment.classDecorates anotherSortedMultiSetto transform objects that are added.classTreeMultiSet<E>ImplementsSortedMultiSet, using aTreeMapto provide the data storage.final classDecorates anotherSortedMultiSetto ensure it can't be altered.Methods in org.apache.commons.collections4.multiset that return SortedMultiSetModifier and TypeMethodDescriptionprotected SortedMultiSet<E> AbstractSortedMultiSetDecorator.decorated()Gets the multiset being decorated.protected SortedMultiSet<E> PredicatedSortedMultiSet.decorated()Gets the decorated sorted multiset.protected SortedMultiSet<E> SynchronizedSortedMultiSet.decorated()Gets the multiset being decorated.protected SortedMultiSet<E> TransformedSortedMultiSet.getSortedMultiSet()Gets the decorated sorted multiset.static <E> SortedMultiSet<E> UnmodifiableSortedMultiSet.unmodifiableSortedMultiSet(SortedMultiSet<? extends E> multiset) Factory method to create an unmodifiable multiset.Methods in org.apache.commons.collections4.multiset with parameters of type SortedMultiSetModifier and TypeMethodDescriptionstatic <E> PredicatedSortedMultiSet<E> PredicatedSortedMultiSet.predicatedSortedMultiSet(SortedMultiSet<E> multiset, Predicate<? super E> predicate) Factory method to create a predicated (validating) multiset.static <E> SynchronizedSortedMultiSet<E> SynchronizedSortedMultiSet.synchronizedSortedMultiSet(SortedMultiSet<E> multiset) Factory method to create a synchronized sorted multiset.static <E> TransformedSortedMultiSet<E> TransformedSortedMultiSet.transformedSortedMultiSet(SortedMultiSet<E> multiset, Transformer<? super E, ? extends E> transformer) Factory method to create a transforming sorted multiset that will transform existing contents of the specified sorted multiset.static <E> TransformedSortedMultiSet<E> TransformedSortedMultiSet.transformingSortedMultiSet(SortedMultiSet<E> multiset, Transformer<? super E, ? extends E> transformer) Factory method to create a transforming sorted multiset.static <E> SortedMultiSet<E> UnmodifiableSortedMultiSet.unmodifiableSortedMultiSet(SortedMultiSet<? extends E> multiset) Factory method to create an unmodifiable multiset.Constructors in org.apache.commons.collections4.multiset with parameters of type SortedMultiSetModifierConstructorDescriptionprotectedAbstractSortedMultiSetDecorator(SortedMultiSet<E> multiset) Constructor that wraps (not copies).protectedPredicatedSortedMultiSet(SortedMultiSet<E> multiset, Predicate<? super E> predicate) Constructor that wraps (not copies).protectedSynchronizedSortedMultiSet(SortedMultiSet<E> multiset) Constructor that wraps (not copies).protectedSynchronizedSortedMultiSet(SortedMultiSet<E> multiset, Object lock) Constructor that wraps (not copies).protectedTransformedSortedMultiSet(SortedMultiSet<E> multiset, Transformer<? super E, ? extends E> transformer) Constructor that wraps (not copies).