Uses of Interface
org.eclipse.collections.api.bag.sorted.ImmutableSortedBag
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 of
MutableSortedBag
.This package contains implementations of the
MutableCollection
interface.This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
PartitionSortedBag
interface.-
Uses of ImmutableSortedBag in org.eclipse.collections.api
Modifier and TypeMethodDescriptiondefault ImmutableSortedBag<T>
RichIterable.toImmutableSortedBag()
Converts the RichIterable to the default ImmutableSortedBag implementation.default ImmutableSortedBag<T>
RichIterable.toImmutableSortedBag
(Comparator<? super T> comparator) Converts the collection to an ImmutableSortedBag implementation and sorts it using the specified comparator.default <V extends Comparable<? super V>>
ImmutableSortedBag<T>RichIterable.toImmutableSortedBagBy
(Function<? super T, ? extends V> function) Converts the collection to an ImmutableSortedBag implementation and sorts it based on the natural order of the attribute returned byfunction
. -
Uses of ImmutableSortedBag in org.eclipse.collections.api.bag.sorted
Modifier and TypeMethodDescriptionImmutableSortedBag.drop
(int count) ImmutableSortedBag.newWithAll
(Iterable<? extends T> elements) ImmutableSortedBag.newWithout
(T element) ImmutableSortedBag.newWithoutAll
(Iterable<? extends T> elements) <P> ImmutableSortedBag<T>
ImmutableSortedBag.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) ImmutableSortedBag.selectByOccurrences
(IntPredicate predicate) default ImmutableSortedBag<T>
ImmutableSortedBag.selectDuplicates()
<S> ImmutableSortedBag<S>
ImmutableSortedBag.selectInstancesOf
(Class<S> clazz) <P> ImmutableSortedBag<T>
ImmutableSortedBag.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) ImmutableSortedBag.take
(int count) SortedBag.toImmutable()
Convert the SortedBag to an ImmutableSortedBag.default ImmutableSortedBag<T>
ImmutableSortedBag.toImmutableSortedBag()
default ImmutableSortedBag<T>
MutableSortedBag.toImmutableSortedBag()
ImmutableSortedBag.toReversed()
-
Uses of ImmutableSortedBag in org.eclipse.collections.api.factory.bag.sorted
Modifier and TypeMethodDescription<T> ImmutableSortedBag<T>
ImmutableSortedBagFactory.empty()
<T> ImmutableSortedBag<T>
ImmutableSortedBagFactory.empty
(Comparator<? super T> comparator) <T> ImmutableSortedBag<T>
ImmutableSortedBagFactory.of()
Same asImmutableSortedBagFactory.empty()
.<T> ImmutableSortedBag<T>
ImmutableSortedBagFactory.of
(Comparator<? super T> comparator) <T> ImmutableSortedBag<T>
ImmutableSortedBagFactory.of
(Comparator<? super T> comparator, T... items) <T> ImmutableSortedBag<T>
ImmutableSortedBagFactory.of
(T... items) <T> ImmutableSortedBag<T>
<T> ImmutableSortedBag<T>
ImmutableSortedBagFactory.ofAll
(Comparator<? super T> comparator, Iterable<? extends T> items) <T> ImmutableSortedBag<T>
ImmutableSortedBagFactory.ofSortedBag
(SortedBag<T> bag) <T> ImmutableSortedBag<T>
ImmutableSortedBagFactory.with()
Same asImmutableSortedBagFactory.empty()
.<T> ImmutableSortedBag<T>
ImmutableSortedBagFactory.with
(Comparator<? super T> comparator) <T> ImmutableSortedBag<T>
ImmutableSortedBagFactory.with
(Comparator<? super T> comparator, T... items) <T> ImmutableSortedBag<T>
ImmutableSortedBagFactory.with
(T... items) <T> ImmutableSortedBag<T>
<T> ImmutableSortedBag<T>
ImmutableSortedBagFactory.withAll
(Comparator<? super T> comparator, Iterable<? extends T> items) <T> ImmutableSortedBag<T>
ImmutableSortedBagFactory.withSortedBag
(SortedBag<T> bag) -
Uses of ImmutableSortedBag in org.eclipse.collections.api.multimap.sortedbag
-
Uses of ImmutableSortedBag in org.eclipse.collections.api.partition.bag.sorted
Modifier and TypeMethodDescriptionPartitionImmutableSortedBag.getRejected()
PartitionImmutableSortedBag.getSelected()
-
Uses of ImmutableSortedBag in org.eclipse.collections.impl.bag.sorted.immutable
Modifier and TypeMethodDescription<T> ImmutableSortedBag<T>
ImmutableSortedBagFactoryImpl.empty()
<T> ImmutableSortedBag<T>
ImmutableSortedBagFactoryImpl.empty
(Comparator<? super T> comparator) <T> ImmutableSortedBag<T>
ImmutableSortedBagFactoryImpl.of()
<T> ImmutableSortedBag<T>
ImmutableSortedBagFactoryImpl.of
(Comparator<? super T> comparator) <T> ImmutableSortedBag<T>
ImmutableSortedBagFactoryImpl.of
(Comparator<? super T> comparator, T... items) <T> ImmutableSortedBag<T>
ImmutableSortedBagFactoryImpl.of
(T... items) <T> ImmutableSortedBag<T>
<T> ImmutableSortedBag<T>
ImmutableSortedBagFactoryImpl.ofAll
(Comparator<? super T> comparator, Iterable<? extends T> items) <T> ImmutableSortedBag<T>
ImmutableSortedBagFactoryImpl.ofSortedBag
(SortedBag<T> bag) <T> ImmutableSortedBag<T>
ImmutableSortedBagFactoryImpl.with()
<T> ImmutableSortedBag<T>
ImmutableSortedBagFactoryImpl.with
(Comparator<? super T> comparator) <T> ImmutableSortedBag<T>
ImmutableSortedBagFactoryImpl.with
(Comparator<? super T> comparator, T... items) <T> ImmutableSortedBag<T>
ImmutableSortedBagFactoryImpl.with
(T... items) <T> ImmutableSortedBag<T>
<T> ImmutableSortedBag<T>
ImmutableSortedBagFactoryImpl.withAll
(Comparator<? super T> comparator, Iterable<? extends T> items) <T> ImmutableSortedBag<T>
ImmutableSortedBagFactoryImpl.withSortedBag
(SortedBag<T> bag) -
Uses of ImmutableSortedBag in org.eclipse.collections.impl.bag.sorted.mutable
Modifier and TypeMethodDescriptionAbstractMutableSortedBag.toImmutable()
SynchronizedSortedBag.toImmutable()
UnmodifiableSortedBag.toImmutable()
-
Uses of ImmutableSortedBag in org.eclipse.collections.impl.collection
Modifier and TypeMethodDescriptionAbstractSynchronizedRichIterable.toImmutableSortedBag()
AbstractSynchronizedRichIterable.toImmutableSortedBag
(Comparator<? super T> comparator) <V extends Comparable<? super V>>
ImmutableSortedBag<T>AbstractSynchronizedRichIterable.toImmutableSortedBagBy
(Function<? super T, ? extends V> function) -
Uses of ImmutableSortedBag in org.eclipse.collections.impl.collection.mutable
Modifier and TypeMethodDescriptionAbstractMultiReaderMutableCollection.toImmutableSortedBag()
AbstractMultiReaderMutableCollection.toImmutableSortedBag
(Comparator<? super T> comparator) <V extends Comparable<? super V>>
ImmutableSortedBag<T>AbstractMultiReaderMutableCollection.toImmutableSortedBagBy
(Function<? super T, ? extends V> function) -
Uses of ImmutableSortedBag in org.eclipse.collections.impl.collector
Modifier and TypeMethodDescriptionstatic <T> Collector<T,
?, ImmutableSortedBag<T>> Collectors2.toImmutableSortedBag()
Returns the elements as an ImmutableSortedBag.static <T> Collector<T,
?, ImmutableSortedBag<T>> Collectors2.toImmutableSortedBag
(Comparator<? super T> comparator) Returns the elements as an ImmutableSortedBag using the specified comparator.static <T,
V extends Comparable<? super V>>
Collector<T,?, ImmutableSortedBag<T>> Collectors2.toImmutableSortedBagBy
(Function<? super T, ? extends V> function) Returns the elements as a ImmutableSortedBag using the specified function. -
Uses of ImmutableSortedBag in org.eclipse.collections.impl.map.mutable.primitive
Modifier and TypeMethodDescriptionSynchronizedByteObjectMap.toImmutableSortedBag()
SynchronizedByteObjectMap.toImmutableSortedBag
(Comparator<? super V> comparator) SynchronizedCharObjectMap.toImmutableSortedBag()
SynchronizedCharObjectMap.toImmutableSortedBag
(Comparator<? super V> comparator) SynchronizedDoubleObjectMap.toImmutableSortedBag()
SynchronizedDoubleObjectMap.toImmutableSortedBag
(Comparator<? super V> comparator) SynchronizedFloatObjectMap.toImmutableSortedBag()
SynchronizedFloatObjectMap.toImmutableSortedBag
(Comparator<? super V> comparator) SynchronizedIntObjectMap.toImmutableSortedBag()
SynchronizedIntObjectMap.toImmutableSortedBag
(Comparator<? super V> comparator) SynchronizedLongObjectMap.toImmutableSortedBag()
SynchronizedLongObjectMap.toImmutableSortedBag
(Comparator<? super V> comparator) SynchronizedShortObjectMap.toImmutableSortedBag()
SynchronizedShortObjectMap.toImmutableSortedBag
(Comparator<? super V> comparator) <VV extends Comparable<? super VV>>
ImmutableSortedBag<V>SynchronizedByteObjectMap.toImmutableSortedBagBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
ImmutableSortedBag<V>SynchronizedCharObjectMap.toImmutableSortedBagBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
ImmutableSortedBag<V>SynchronizedDoubleObjectMap.toImmutableSortedBagBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
ImmutableSortedBag<V>SynchronizedFloatObjectMap.toImmutableSortedBagBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
ImmutableSortedBag<V>SynchronizedIntObjectMap.toImmutableSortedBagBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
ImmutableSortedBag<V>SynchronizedLongObjectMap.toImmutableSortedBagBy
(Function<? super V, ? extends VV> function) <VV extends Comparable<? super VV>>
ImmutableSortedBag<V>SynchronizedShortObjectMap.toImmutableSortedBagBy
(Function<? super V, ? extends VV> function) -
Uses of ImmutableSortedBag in org.eclipse.collections.impl.multimap.bag.sorted.immutable
ModifierConstructorDescriptionImmutableSortedBagMultimapImpl
(ImmutableMap<K, ImmutableSortedBag<V>> map, Comparator<? super V> comparator) ImmutableSortedBagMultimapImpl
(MutableMap<K, ImmutableSortedBag<V>> map, Comparator<? super V> comparator) -
Uses of ImmutableSortedBag in org.eclipse.collections.impl.partition.bag.sorted
Modifier and TypeMethodDescriptionPartitionImmutableSortedBagImpl.getRejected()
PartitionImmutableSortedBagImpl.getSelected()