Uses of Interface
org.apache.commons.collections4.SortedBag
Packages that use SortedBag
Package
Description
Interfaces and utilities shared across all packages.
-
Uses of SortedBag in org.apache.commons.collections4
Methods in org.apache.commons.collections4 that return SortedBagModifier and TypeMethodDescriptionstatic <E> SortedBag<E> BagUtils.emptySortedBag()Deprecated.Gets an emptySortedBag.static <E> SortedBag<E> BagUtils.predicatedSortedBag(SortedBag<E> bag, Predicate<? super E> predicate) Deprecated.Returns a predicated (validating) sorted bag backed by the given sorted bag.static <E> SortedBag<E> BagUtils.synchronizedSortedBag(SortedBag<E> bag) Deprecated.Returns a synchronized (thread-safe) sorted bag backed by the given sorted bag.static <E> SortedBag<E> BagUtils.transformingSortedBag(SortedBag<E> bag, Transformer<? super E, ? extends E> transformer) Deprecated.Returns a transformed sorted bag backed by the given bag.static <E> SortedBag<E> BagUtils.unmodifiableSortedBag(SortedBag<E> bag) Deprecated.Returns an unmodifiable view of the given sorted bag.Methods in org.apache.commons.collections4 with parameters of type SortedBagModifier and TypeMethodDescriptionstatic <E> SortedBag<E> BagUtils.predicatedSortedBag(SortedBag<E> bag, Predicate<? super E> predicate) Deprecated.Returns a predicated (validating) sorted bag backed by the given sorted bag.static <E> SortedBag<E> BagUtils.synchronizedSortedBag(SortedBag<E> bag) Deprecated.Returns a synchronized (thread-safe) sorted bag backed by the given sorted bag.static <E> SortedBag<E> BagUtils.transformingSortedBag(SortedBag<E> bag, Transformer<? super E, ? extends E> transformer) Deprecated.Returns a transformed sorted bag backed by the given bag.static <E> SortedBag<E> BagUtils.unmodifiableSortedBag(SortedBag<E> bag) Deprecated.Returns an unmodifiable view of the given sorted bag. -
Uses of SortedBag in org.apache.commons.collections4.bag
Classes in org.apache.commons.collections4.bag that implement SortedBagModifier and TypeClassDescriptionclassDeprecated.final classDeprecated.Since 4.6.0, no longer needed; aSortedMultiSetalready complies with theCollectioncontract.classDeprecated.Since 4.6.0, usePredicatedSortedMultiSetinstead.classDeprecated.Since 4.6.0, useSynchronizedSortedMultiSetinstead.classDeprecated.Since 4.6.0, useTransformedSortedMultiSetinstead.classTreeBag<E>Deprecated.Since 4.6.0, useTreeMultiSetinstead.final classDeprecated.Since 4.6.0, useUnmodifiableSortedMultiSetinstead.Methods in org.apache.commons.collections4.bag that return SortedBagModifier and TypeMethodDescriptionstatic <E> SortedBag<E> CollectionSortedBag.collectionSortedBag(SortedBag<E> bag) Deprecated.Factory method to create a sorted bag that complies to the Collection contract.AbstractSortedBagDecorator.decorated()Deprecated.Gets the bag being decorated.PredicatedSortedBag.decorated()Deprecated.Gets the decorated sorted bag.SynchronizedSortedBag.getSortedBag()Deprecated.Gets the bag being decorated.TransformedSortedBag.getSortedBag()Deprecated.Gets the decorated bag.static <E> SortedBag<E> UnmodifiableSortedBag.unmodifiableSortedBag(SortedBag<E> bag) Deprecated.Factory method to create an unmodifiable bag.Methods in org.apache.commons.collections4.bag with parameters of type SortedBagModifier and TypeMethodDescriptionstatic <E> SortedBag<E> CollectionSortedBag.collectionSortedBag(SortedBag<E> bag) Deprecated.Factory method to create a sorted bag that complies to the Collection contract.static <E> PredicatedSortedBag<E> PredicatedSortedBag.predicatedSortedBag(SortedBag<E> bag, Predicate<? super E> predicate) Deprecated.Factory method to create a predicated (validating) bag.static <E> SynchronizedSortedBag<E> SynchronizedSortedBag.synchronizedSortedBag(SortedBag<E> bag) Deprecated.Factory method to create a synchronized sorted bag.static <E> TransformedSortedBag<E> TransformedSortedBag.transformedSortedBag(SortedBag<E> bag, Transformer<? super E, ? extends E> transformer) Deprecated.Factory method to create a transforming sorted bag that will transform existing contents of the specified sorted bag.static <E> TransformedSortedBag<E> TransformedSortedBag.transformingSortedBag(SortedBag<E> bag, Transformer<? super E, ? extends E> transformer) Deprecated.Factory method to create a transforming sorted bag.static <E> SortedBag<E> UnmodifiableSortedBag.unmodifiableSortedBag(SortedBag<E> bag) Deprecated.Factory method to create an unmodifiable bag.Constructors in org.apache.commons.collections4.bag with parameters of type SortedBagModifierConstructorDescriptionprotectedDeprecated.Constructor that wraps (not copies).CollectionSortedBag(SortedBag<E> bag) Deprecated.Constructor that wraps (not copies).protectedPredicatedSortedBag(SortedBag<E> bag, Predicate<? super E> predicate) Deprecated.Constructor that wraps (not copies).protectedSynchronizedSortedBag(SortedBag<E> bag) Deprecated.Constructor that wraps (not copies).protectedTransformedSortedBag(SortedBag<E> bag, Transformer<? super E, ? extends E> transformer) Deprecated.Constructor that wraps (not copies).
AbstractSortedMultiSetDecoratorinstead.