Uses of Interface
org.eclipse.collections.api.bag.sorted.MutableSortedBag
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains interfaces for SortedBag API.
This package contains interfaces for
SortedBagMultimap
.This package contains interfaces for
PartitionSortedBag
.This package contains implementations for Eclipse Collections API.
This package contains implementations of the
ImmutableBag
interface.This package contains implementations of
MutableSortedBag
.This package contains implementations of the
MutableBiMap
interface.This package contains implementations of the
MutableCollection
interface.This package contains implementations of the
MutableMap
interface.This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableSortedMap
interface.This package contains implementations of the
PartitionSortedBag
interface.This package contains implementations of the
MutableStack
interface.-
Uses of MutableSortedBag in org.eclipse.collections.api
Modifier and TypeMethodDescriptionParallelIterable.toSortedBag()
ParallelIterable.toSortedBag
(Comparator<? super T> comparator) RichIterable.toSortedBag()
Converts the collection to a MutableSortedBag implementation and sorts it using the natural order of the elements.RichIterable.toSortedBag
(Comparator<? super T> comparator) Converts the collection to the MutableSortedBag implementation and sorts it using the specified comparator.<V extends Comparable<? super V>>
MutableSortedBag<T>ParallelIterable.toSortedBagBy
(Function<? super T, ? extends V> function) default <V extends Comparable<? super V>>
MutableSortedBag<T>RichIterable.toSortedBagBy
(Function<? super T, ? extends V> function) Converts the collection to a MutableSortedBag implementation and sorts it based on the natural order of the attribute returned byfunction
. -
Uses of MutableSortedBag in org.eclipse.collections.api.bag.sorted
Modifier and TypeMethodDescriptionMutableSortedBag.asSynchronized()
MutableSortedBag.asUnmodifiable()
Returns an unmodifiable view of the set.MutableSortedBag.clone()
MutableSortedBag.drop
(int count) MutableSortedBag.newEmpty()
<P> MutableSortedBag<T>
MutableSortedBag.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) MutableSortedBag.selectByOccurrences
(IntPredicate predicate) default MutableSortedBag<T>
MutableSortedBag.selectDuplicates()
<S> MutableSortedBag<S>
MutableSortedBag.selectInstancesOf
(Class<S> clazz) <P> MutableSortedBag<T>
MutableSortedBag.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) MutableSortedBag.take
(int count) MutableSortedBag.toReversed()
default MutableSortedBag<T>
default MutableSortedBag<T>
default MutableSortedBag<T>
default MutableSortedBag<T>
MutableSortedBag.withoutAll
(Iterable<? extends T> elements) -
Uses of MutableSortedBag in org.eclipse.collections.api.factory.bag.sorted
Modifier and TypeMethodDescription<T> MutableSortedBag<T>
MutableSortedBagFactory.empty()
<T> MutableSortedBag<T>
MutableSortedBagFactory.empty
(Comparator<? super T> comparator) <T> MutableSortedBag<T>
MutableSortedBagFactory.of()
Same asMutableSortedBagFactory.with()
.<T> MutableSortedBag<T>
MutableSortedBagFactory.of
(Comparator<? super T> comparator) <T> MutableSortedBag<T>
MutableSortedBagFactory.of
(Comparator<? super T> comparator, T... elements) <T> MutableSortedBag<T>
MutableSortedBagFactory.of
(T... elements) <T> MutableSortedBag<T>
<T> MutableSortedBag<T>
MutableSortedBagFactory.ofAll
(Comparator<? super T> comparator, Iterable<? extends T> items) <T> MutableSortedBag<T>
MutableSortedBagFactory.with()
<T> MutableSortedBag<T>
MutableSortedBagFactory.with
(Comparator<? super T> comparator) <T> MutableSortedBag<T>
MutableSortedBagFactory.with
(Comparator<? super T> comparator, T... elements) <T> MutableSortedBag<T>
MutableSortedBagFactory.with
(T... elements) <T> MutableSortedBag<T>
<T> MutableSortedBag<T>
MutableSortedBagFactory.withAll
(Comparator<? super T> comparator, Iterable<? extends T> items) -
Uses of MutableSortedBag in org.eclipse.collections.api.multimap.sortedbag
Modifier and TypeMethodDescriptionMutableSortedBagMultimap.getIfAbsentPutAll
(K key, Iterable<? extends V> values) MutableSortedBagMultimap.replaceValues
(K key, Iterable<? extends V> values) -
Uses of MutableSortedBag in org.eclipse.collections.api.partition.bag.sorted
Modifier and TypeMethodDescriptionPartitionMutableSortedBag.getRejected()
PartitionMutableSortedBag.getSelected()
-
Uses of MutableSortedBag in org.eclipse.collections.impl
Modifier and TypeMethodDescriptionAbstractRichIterable.toSortedBag()
AbstractRichIterable.toSortedBag
(Comparator<? super T> comparator) UnmodifiableRichIterable.toSortedBag()
UnmodifiableRichIterable.toSortedBag
(Comparator<? super T> comparator) <V extends Comparable<? super V>>
MutableSortedBag<T>AbstractRichIterable.toSortedBagBy
(Function<? super T, ? extends V> function) -
Uses of MutableSortedBag in org.eclipse.collections.impl.bag
Modifier and TypeMethodDescriptionAbstractBag.toSortedBag()
AbstractBag.toSortedBag
(Comparator<? super T> comparator) -
Uses of MutableSortedBag in org.eclipse.collections.impl.bag.immutable
Modifier and TypeMethodDescriptionImmutableHashBag.toSortedBag()
ImmutableHashBag.toSortedBag
(Comparator<? super T> comparator) -
Uses of MutableSortedBag in org.eclipse.collections.impl.bag.sorted.mutable
Modifier and TypeClassDescriptionclass
class
A synchronized view of aMutableSortedBag
.class
TreeBag<T>
A TreeBag is a MutableSortedBag which uses a SortedMap as its underlying data store.class
An unmodifiable view of a SortedBag.Modifier and TypeMethodDescriptionstatic <E,
S extends MutableSortedBag<E>>
UnmodifiableSortedBag<E>UnmodifiableSortedBag.of
(S bag) This method will take a MutableSortedBag and wrap it directly in a UnmodifiableSortedBag.Modifier and TypeMethodDescriptionAbstractMutableSortedBag.asSynchronized()
SynchronizedSortedBag.asSynchronized()
UnmodifiableSortedBag.asSynchronized()
SynchronizedSortedBag.asUnmodifiable()
UnmodifiableSortedBag.asUnmodifiable()
abstract MutableSortedBag<T>
AbstractMutableSortedBag.clone()
SynchronizedSortedBag.clone()
SynchronizedSortedBag.drop
(int count) TreeBag.drop
(int count) UnmodifiableSortedBag.drop
(int count) <T> MutableSortedBag<T>
MutableSortedBagFactoryImpl.empty()
<T> MutableSortedBag<T>
MutableSortedBagFactoryImpl.empty
(Comparator<? super T> comparator) SynchronizedSortedBag.newEmpty()
TreeBag.newEmpty()
UnmodifiableSortedBag.newEmpty()
<T> MutableSortedBag<T>
MutableSortedBagFactoryImpl.of()
<T> MutableSortedBag<T>
MutableSortedBagFactoryImpl.of
(Comparator<? super T> comparator) <T> MutableSortedBag<T>
MutableSortedBagFactoryImpl.of
(Comparator<? super T> comparator, T... elements) <T> MutableSortedBag<T>
MutableSortedBagFactoryImpl.of
(T... elements) static <E> MutableSortedBag<E>
SynchronizedSortedBag.of
(MutableSortedBag<E> bag, Object lock) <T> MutableSortedBag<T>
<T> MutableSortedBag<T>
MutableSortedBagFactoryImpl.ofAll
(Comparator<? super T> comparator, Iterable<? extends T> items) <P> MutableSortedBag<T>
AbstractMutableSortedBag.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSortedBag<T>
SynchronizedSortedBag.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSortedBag<T>
UnmodifiableSortedBag.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) SynchronizedSortedBag.selectByOccurrences
(IntPredicate predicate) TreeBag.selectByOccurrences
(IntPredicate predicate) UnmodifiableSortedBag.selectByOccurrences
(IntPredicate predicate) <S> MutableSortedBag<S>
AbstractMutableSortedBag.selectInstancesOf
(Class<S> clazz) <S> MutableSortedBag<S>
SynchronizedSortedBag.selectInstancesOf
(Class<S> clazz) <S> MutableSortedBag<S>
UnmodifiableSortedBag.selectInstancesOf
(Class<S> clazz) <P> MutableSortedBag<T>
AbstractMutableSortedBag.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSortedBag<T>
SynchronizedSortedBag.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSortedBag<T>
UnmodifiableSortedBag.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) SynchronizedSortedBag.take
(int count) TreeBag.take
(int count) UnmodifiableSortedBag.take
(int count) AbstractMutableSortedBag.toReversed()
SynchronizedSortedBag.toReversed()
UnmodifiableSortedBag.toReversed()
<T> MutableSortedBag<T>
MutableSortedBagFactoryImpl.with()
<T> MutableSortedBag<T>
MutableSortedBagFactoryImpl.with
(Comparator<? super T> comparator) <T> MutableSortedBag<T>
MutableSortedBagFactoryImpl.with
(Comparator<? super T> comparator, T... elements) <T> MutableSortedBag<T>
MutableSortedBagFactoryImpl.with
(T... elements) <T> MutableSortedBag<T>
<T> MutableSortedBag<T>
MutableSortedBagFactoryImpl.withAll
(Comparator<? super T> comparator, Iterable<? extends T> items) UnmodifiableSortedBag.withoutAll
(Iterable<? extends T> elements) Modifier and TypeMethodDescriptionstatic <E> SynchronizedSortedBag<E>
SynchronizedSortedBag.of
(MutableSortedBag<E> bag) static <E> MutableSortedBag<E>
SynchronizedSortedBag.of
(MutableSortedBag<E> bag, Object lock) -
Uses of MutableSortedBag in org.eclipse.collections.impl.bimap
Modifier and TypeMethodDescriptionAbstractBiMap.toSortedBag()
AbstractBiMap.toSortedBag
(Comparator<? super V> comparator) -
Uses of MutableSortedBag in org.eclipse.collections.impl.bimap.mutable
Modifier and TypeMethodDescriptionUnmodifiableBiMap.toSortedBag()
UnmodifiableBiMap.toSortedBag
(Comparator<? super V> comparator) -
Uses of MutableSortedBag in org.eclipse.collections.impl.collection
Modifier and TypeMethodDescriptionAbstractSynchronizedRichIterable.toSortedBag()
AbstractSynchronizedRichIterable.toSortedBag
(Comparator<? super T> comparator) -
Uses of MutableSortedBag in org.eclipse.collections.impl.collection.mutable
Modifier and TypeMethodDescriptionAbstractCollectionAdapter.toSortedBag()
AbstractCollectionAdapter.toSortedBag
(Comparator<? super T> comparator) AbstractMultiReaderMutableCollection.toSortedBag()
AbstractMultiReaderMutableCollection.toSortedBag
(Comparator<? super T> comparator) AbstractUnmodifiableMutableCollection.toSortedBag()
AbstractUnmodifiableMutableCollection.toSortedBag
(Comparator<? super T> comparator) -
Uses of MutableSortedBag in org.eclipse.collections.impl.collector
Modifier and TypeMethodDescriptionstatic <T> Collector<T,
?, MutableSortedBag<T>> Collectors2.toSortedBag()
Returns the elements as a MutableSortedBag.static <T> Collector<T,
?, MutableSortedBag<T>> Collectors2.toSortedBag
(Comparator<? super T> comparator) Returns the elements as a MutableSortedBag using the specified comparator.static <T,
V extends Comparable<? super V>>
Collector<T,?, MutableSortedBag<T>> Collectors2.toSortedBagBy
(Function<? super T, ? extends V> function) Returns the elements as a MutableSortedBag using the specified function. -
Uses of MutableSortedBag in org.eclipse.collections.impl.lazy.parallel
Modifier and TypeMethodDescriptionAbstractMultiReaderParallelIterable.toSortedBag()
AbstractMultiReaderParallelIterable.toSortedBag
(Comparator<? super T> comparator) AbstractParallelIterable.toSortedBag()
AbstractParallelIterable.toSortedBag
(Comparator<? super T> comparator) AbstractSynchronizedParallelIterable.toSortedBag()
AbstractSynchronizedParallelIterable.toSortedBag
(Comparator<? super T> comparator) NonParallelIterable.toSortedBag()
NonParallelIterable.toSortedBag
(Comparator<? super T> comparator) <V extends Comparable<? super V>>
MutableSortedBag<T>AbstractMultiReaderParallelIterable.toSortedBagBy
(Function<? super T, ? extends V> function) <V extends Comparable<? super V>>
MutableSortedBag<T>AbstractParallelIterable.toSortedBagBy
(Function<? super T, ? extends V> function) <V extends Comparable<? super V>>
MutableSortedBag<T>AbstractSynchronizedParallelIterable.toSortedBagBy
(Function<? super T, ? extends V> function) <V extends Comparable<? super V>>
MutableSortedBag<T>NonParallelIterable.toSortedBagBy
(Function<? super T, ? extends V> function) -
Uses of MutableSortedBag in org.eclipse.collections.impl.map.mutable
Modifier and TypeMethodDescriptionUnmodifiableMutableMap.toSortedBag()
UnmodifiableMutableMap.toSortedBag
(Comparator<? super V> comparator) -
Uses of MutableSortedBag in org.eclipse.collections.impl.map.mutable.primitive
Modifier and TypeMethodDescriptionByteObjectHashMap.toSortedBag()
ByteObjectHashMap.toSortedBag
(Comparator<? super V> comparator) CharObjectHashMap.toSortedBag()
CharObjectHashMap.toSortedBag
(Comparator<? super V> comparator) DoubleObjectHashMap.toSortedBag()
DoubleObjectHashMap.toSortedBag
(Comparator<? super V> comparator) FloatObjectHashMap.toSortedBag()
FloatObjectHashMap.toSortedBag
(Comparator<? super V> comparator) IntObjectHashMap.toSortedBag()
IntObjectHashMap.toSortedBag
(Comparator<? super V> comparator) LongObjectHashMap.toSortedBag()
LongObjectHashMap.toSortedBag
(Comparator<? super V> comparator) ShortObjectHashMap.toSortedBag()
ShortObjectHashMap.toSortedBag
(Comparator<? super V> comparator) SynchronizedByteObjectMap.toSortedBag()
SynchronizedByteObjectMap.toSortedBag
(Comparator<? super V> comparator) SynchronizedCharObjectMap.toSortedBag()
SynchronizedCharObjectMap.toSortedBag
(Comparator<? super V> comparator) SynchronizedDoubleObjectMap.toSortedBag()
SynchronizedDoubleObjectMap.toSortedBag
(Comparator<? super V> comparator) SynchronizedFloatObjectMap.toSortedBag()
SynchronizedFloatObjectMap.toSortedBag
(Comparator<? super V> comparator) SynchronizedIntObjectMap.toSortedBag()
SynchronizedIntObjectMap.toSortedBag
(Comparator<? super V> comparator) SynchronizedLongObjectMap.toSortedBag()
SynchronizedLongObjectMap.toSortedBag
(Comparator<? super V> comparator) SynchronizedShortObjectMap.toSortedBag()
SynchronizedShortObjectMap.toSortedBag
(Comparator<? super V> comparator) UnmodifiableByteObjectMap.toSortedBag()
UnmodifiableByteObjectMap.toSortedBag
(Comparator<? super V> comparator) UnmodifiableCharObjectMap.toSortedBag()
UnmodifiableCharObjectMap.toSortedBag
(Comparator<? super V> comparator) UnmodifiableDoubleObjectMap.toSortedBag()
UnmodifiableDoubleObjectMap.toSortedBag
(Comparator<? super V> comparator) UnmodifiableFloatObjectMap.toSortedBag()
UnmodifiableFloatObjectMap.toSortedBag
(Comparator<? super V> comparator) UnmodifiableIntObjectMap.toSortedBag()
UnmodifiableIntObjectMap.toSortedBag
(Comparator<? super V> comparator) UnmodifiableLongObjectMap.toSortedBag()
UnmodifiableLongObjectMap.toSortedBag
(Comparator<? super V> comparator) UnmodifiableShortObjectMap.toSortedBag()
UnmodifiableShortObjectMap.toSortedBag
(Comparator<? super V> comparator) <VV extends Comparable<? super VV>>
MutableSortedBag<V>SynchronizedByteObjectMap.toSortedBagBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedBag<V>SynchronizedCharObjectMap.toSortedBagBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedBag<V>SynchronizedDoubleObjectMap.toSortedBagBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedBag<V>SynchronizedFloatObjectMap.toSortedBagBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedBag<V>SynchronizedIntObjectMap.toSortedBagBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedBag<V>SynchronizedLongObjectMap.toSortedBagBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedBag<V>SynchronizedShortObjectMap.toSortedBagBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedBag<V>UnmodifiableByteObjectMap.toSortedBagBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedBag<V>UnmodifiableCharObjectMap.toSortedBagBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedBag<V>UnmodifiableDoubleObjectMap.toSortedBagBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedBag<V>UnmodifiableFloatObjectMap.toSortedBagBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedBag<V>UnmodifiableIntObjectMap.toSortedBagBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedBag<V>UnmodifiableLongObjectMap.toSortedBagBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
MutableSortedBag<V>UnmodifiableShortObjectMap.toSortedBagBy
(Function<? super V, ? extends VV> function) -
Uses of MutableSortedBag in org.eclipse.collections.impl.map.ordered.mutable
Modifier and TypeMethodDescriptionUnmodifiableMutableOrderedMap.toSortedBag()
UnmodifiableMutableOrderedMap.toSortedBag
(Comparator<? super V> comparator) -
Uses of MutableSortedBag in org.eclipse.collections.impl.map.sorted.mutable
Modifier and TypeMethodDescriptionUnmodifiableTreeMap.toSortedBag()
UnmodifiableTreeMap.toSortedBag
(Comparator<? super V> comparator) -
Uses of MutableSortedBag in org.eclipse.collections.impl.multimap.bag.sorted.mutable
Modifier and TypeMethodDescriptionSynchronizedSortedBagMultimap.getIfAbsentPutAll
(K key, Iterable<? extends V> values) SynchronizedSortedBagMultimap.replaceValues
(K key, Iterable<? extends V> values) -
Uses of MutableSortedBag in org.eclipse.collections.impl.partition.bag.sorted
-
Uses of MutableSortedBag in org.eclipse.collections.impl.stack.mutable
Modifier and TypeMethodDescriptionArrayStack.toSortedBag()
ArrayStack.toSortedBag
(Comparator<? super T> comparator) SynchronizedStack.toSortedBag()
SynchronizedStack.toSortedBag
(Comparator<? super T> comparator) UnmodifiableStack.toSortedBag()
UnmodifiableStack.toSortedBag
(Comparator<? super T> comparator)