Uses of Interface
org.eclipse.collections.api.bag.sorted.ImmutableSortedBag
-
-
Uses of ImmutableSortedBag in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return ImmutableSortedBag Modifier and Type Method Description default ImmutableSortedBag<T>
RichIterable. toImmutableSortedBag()
Converts the RichIterable to the default ImmutableSortedBag implementation.default ImmutableSortedBag<T>
RichIterable. toImmutableSortedBag(java.util.Comparator<? super T> comparator)
Converts the collection to an ImmutableSortedBag implementation and sorts it using the specified comparator.default <V extends java.lang.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
Methods in org.eclipse.collections.api.bag.sorted that return ImmutableSortedBag Modifier and Type Method Description ImmutableSortedBag<T>
ImmutableSortedBag. drop(int count)
ImmutableSortedBag<T>
ImmutableSortedBag. dropWhile(Predicate<? super T> predicate)
ImmutableSortedBag<T>
ImmutableSortedBag. newWith(T element)
ImmutableSortedBag<T>
ImmutableSortedBag. newWithAll(java.lang.Iterable<? extends T> elements)
ImmutableSortedBag<T>
ImmutableSortedBag. newWithout(T element)
ImmutableSortedBag<T>
ImmutableSortedBag. newWithoutAll(java.lang.Iterable<? extends T> elements)
ImmutableSortedBag<T>
ImmutableSortedBag. reject(Predicate<? super T> predicate)
<P> ImmutableSortedBag<T>
ImmutableSortedBag. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)
ImmutableSortedBag<T>
ImmutableSortedBag. select(Predicate<? super T> predicate)
ImmutableSortedBag<T>
ImmutableSortedBag. selectByOccurrences(IntPredicate predicate)
default ImmutableSortedBag<T>
ImmutableSortedBag. selectDuplicates()
<S> ImmutableSortedBag<S>
ImmutableSortedBag. selectInstancesOf(java.lang.Class<S> clazz)
<P> ImmutableSortedBag<T>
ImmutableSortedBag. selectWith(Predicate2<? super T,? super P> predicate, P parameter)
ImmutableSortedBag<T>
ImmutableSortedBag. take(int count)
ImmutableSortedBag<T>
ImmutableSortedBag. takeWhile(Predicate<? super T> predicate)
ImmutableSortedBag<T>
ImmutableSortedBag. tap(Procedure<? super T> procedure)
ImmutableSortedBag<T>
SortedBag. toImmutable()
Convert the SortedBag to an ImmutableSortedBag.default ImmutableSortedBag<T>
ImmutableSortedBag. toImmutableSortedBag()
default ImmutableSortedBag<T>
MutableSortedBag. toImmutableSortedBag()
ImmutableSortedBag<T>
ImmutableSortedBag. toReversed()
-
Uses of ImmutableSortedBag in org.eclipse.collections.api.factory.bag.sorted
Methods in org.eclipse.collections.api.factory.bag.sorted that return ImmutableSortedBag Modifier and Type Method Description <T> ImmutableSortedBag<T>
ImmutableSortedBagFactory. empty()
<T> ImmutableSortedBag<T>
ImmutableSortedBagFactory. empty(java.util.Comparator<? super T> comparator)
<T> ImmutableSortedBag<T>
ImmutableSortedBagFactory. of()
Same asImmutableSortedBagFactory.empty()
.<T> ImmutableSortedBag<T>
ImmutableSortedBagFactory. of(java.util.Comparator<? super T> comparator)
<T> ImmutableSortedBag<T>
ImmutableSortedBagFactory. of(java.util.Comparator<? super T> comparator, T... items)
<T> ImmutableSortedBag<T>
ImmutableSortedBagFactory. of(T... items)
<T> ImmutableSortedBag<T>
ImmutableSortedBagFactory. ofAll(java.lang.Iterable<? extends T> items)
<T> ImmutableSortedBag<T>
ImmutableSortedBagFactory. ofAll(java.util.Comparator<? super T> comparator, java.lang.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(java.util.Comparator<? super T> comparator)
<T> ImmutableSortedBag<T>
ImmutableSortedBagFactory. with(java.util.Comparator<? super T> comparator, T... items)
<T> ImmutableSortedBag<T>
ImmutableSortedBagFactory. with(T... items)
<T> ImmutableSortedBag<T>
ImmutableSortedBagFactory. withAll(java.lang.Iterable<? extends T> items)
<T> ImmutableSortedBag<T>
ImmutableSortedBagFactory. withAll(java.util.Comparator<? super T> comparator, java.lang.Iterable<? extends T> items)
<T> ImmutableSortedBag<T>
ImmutableSortedBagFactory. withSortedBag(SortedBag<T> bag)
-
Uses of ImmutableSortedBag in org.eclipse.collections.api.multimap.sortedbag
Methods in org.eclipse.collections.api.multimap.sortedbag that return ImmutableSortedBag Modifier and Type Method Description ImmutableSortedBag<V>
ImmutableSortedBagMultimap. get(K key)
-
Uses of ImmutableSortedBag in org.eclipse.collections.api.partition.bag.sorted
Methods in org.eclipse.collections.api.partition.bag.sorted that return ImmutableSortedBag Modifier and Type Method Description ImmutableSortedBag<T>
PartitionImmutableSortedBag. getRejected()
ImmutableSortedBag<T>
PartitionImmutableSortedBag. getSelected()
-
Uses of ImmutableSortedBag in org.eclipse.collections.impl.bag.sorted.immutable
Classes in org.eclipse.collections.impl.bag.sorted.immutable that implement ImmutableSortedBag Modifier and Type Class Description (package private) class
AbstractImmutableSortedBag<T>
(package private) class
ImmutableEmptySortedBag<T>
(package private) class
ImmutableSortedBagImpl<T>
Fields in org.eclipse.collections.impl.bag.sorted.immutable declared as ImmutableSortedBag Modifier and Type Field Description private ImmutableSortedBag<T>
ImmutableSortedBagSerializationProxy. bag
(package private) static ImmutableSortedBag<?>
ImmutableEmptySortedBag. INSTANCE
Methods in org.eclipse.collections.impl.bag.sorted.immutable that return ImmutableSortedBag Modifier and Type Method Description ImmutableSortedBag<T>
ImmutableEmptySortedBag. drop(int count)
ImmutableSortedBag<T>
ImmutableSortedBagImpl. drop(int count)
ImmutableSortedBag<T>
ImmutableEmptySortedBag. dropWhile(Predicate<? super T> predicate)
ImmutableSortedBag<T>
ImmutableSortedBagImpl. dropWhile(Predicate<? super T> predicate)
<T> ImmutableSortedBag<T>
ImmutableSortedBagFactoryImpl. empty()
<T> ImmutableSortedBag<T>
ImmutableSortedBagFactoryImpl. empty(java.util.Comparator<? super T> comparator)
ImmutableSortedBag<T>
ImmutableEmptySortedBag. newWith(T element)
ImmutableSortedBag<T>
ImmutableSortedBagImpl. newWith(T element)
ImmutableSortedBag<T>
ImmutableEmptySortedBag. newWithAll(java.lang.Iterable<? extends T> elements)
ImmutableSortedBag<T>
ImmutableSortedBagImpl. newWithAll(java.lang.Iterable<? extends T> elements)
ImmutableSortedBag<T>
ImmutableEmptySortedBag. newWithout(T element)
ImmutableSortedBag<T>
ImmutableSortedBagImpl. newWithout(T element)
ImmutableSortedBag<T>
AbstractImmutableSortedBag. newWithoutAll(java.lang.Iterable<? extends T> elements)
ImmutableSortedBag<T>
ImmutableEmptySortedBag. newWithoutAll(java.lang.Iterable<? extends T> elements)
<T> ImmutableSortedBag<T>
ImmutableSortedBagFactoryImpl. of()
<T> ImmutableSortedBag<T>
ImmutableSortedBagFactoryImpl. of(java.util.Comparator<? super T> comparator)
<T> ImmutableSortedBag<T>
ImmutableSortedBagFactoryImpl. of(java.util.Comparator<? super T> comparator, T... items)
<T> ImmutableSortedBag<T>
ImmutableSortedBagFactoryImpl. of(T... items)
<T> ImmutableSortedBag<T>
ImmutableSortedBagFactoryImpl. ofAll(java.lang.Iterable<? extends T> items)
<T> ImmutableSortedBag<T>
ImmutableSortedBagFactoryImpl. ofAll(java.util.Comparator<? super T> comparator, java.lang.Iterable<? extends T> items)
<T> ImmutableSortedBag<T>
ImmutableSortedBagFactoryImpl. ofSortedBag(SortedBag<T> bag)
ImmutableSortedBag<T>
AbstractImmutableSortedBag. reject(Predicate<? super T> predicate)
ImmutableSortedBag<T>
ImmutableEmptySortedBag. reject(Predicate<? super T> predicate)
<P> ImmutableSortedBag<T>
AbstractImmutableSortedBag. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)
<P> ImmutableSortedBag<T>
ImmutableEmptySortedBag. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)
ImmutableSortedBag<T>
AbstractImmutableSortedBag. select(Predicate<? super T> predicate)
ImmutableSortedBag<T>
ImmutableEmptySortedBag. select(Predicate<? super T> predicate)
ImmutableSortedBag<T>
AbstractImmutableSortedBag. selectByOccurrences(IntPredicate predicate)
ImmutableSortedBag<T>
ImmutableEmptySortedBag. selectByOccurrences(IntPredicate predicate)
<S> ImmutableSortedBag<S>
AbstractImmutableSortedBag. selectInstancesOf(java.lang.Class<S> clazz)
<S> ImmutableSortedBag<S>
ImmutableEmptySortedBag. selectInstancesOf(java.lang.Class<S> clazz)
<P> ImmutableSortedBag<T>
AbstractImmutableSortedBag. selectWith(Predicate2<? super T,? super P> predicate, P parameter)
<P> ImmutableSortedBag<T>
ImmutableEmptySortedBag. selectWith(Predicate2<? super T,? super P> predicate, P parameter)
ImmutableSortedBag<T>
ImmutableEmptySortedBag. take(int count)
ImmutableSortedBag<T>
ImmutableSortedBagImpl. take(int count)
ImmutableSortedBag<T>
ImmutableEmptySortedBag. takeWhile(Predicate<? super T> predicate)
ImmutableSortedBag<T>
ImmutableSortedBagImpl. takeWhile(Predicate<? super T> predicate)
ImmutableSortedBag<T>
AbstractImmutableSortedBag. tap(Procedure<? super T> procedure)
ImmutableSortedBag<T>
ImmutableEmptySortedBag. tap(Procedure<? super T> procedure)
ImmutableSortedBag<T>
AbstractImmutableSortedBag. toImmutable()
ImmutableSortedBag<T>
AbstractImmutableSortedBag. toReversed()
<T> ImmutableSortedBag<T>
ImmutableSortedBagFactoryImpl. with()
<T> ImmutableSortedBag<T>
ImmutableSortedBagFactoryImpl. with(java.util.Comparator<? super T> comparator)
<T> ImmutableSortedBag<T>
ImmutableSortedBagFactoryImpl. with(java.util.Comparator<? super T> comparator, T... items)
<T> ImmutableSortedBag<T>
ImmutableSortedBagFactoryImpl. with(T... items)
<T> ImmutableSortedBag<T>
ImmutableSortedBagFactoryImpl. withAll(java.lang.Iterable<? extends T> items)
<T> ImmutableSortedBag<T>
ImmutableSortedBagFactoryImpl. withAll(java.util.Comparator<? super T> comparator, java.lang.Iterable<? extends T> items)
<T> ImmutableSortedBag<T>
ImmutableSortedBagFactoryImpl. withSortedBag(SortedBag<T> bag)
Constructors in org.eclipse.collections.impl.bag.sorted.immutable with parameters of type ImmutableSortedBag Constructor Description ImmutableSortedBagSerializationProxy(ImmutableSortedBag<T> bag)
-
Uses of ImmutableSortedBag in org.eclipse.collections.impl.bag.sorted.mutable
Methods in org.eclipse.collections.impl.bag.sorted.mutable that return ImmutableSortedBag Modifier and Type Method Description ImmutableSortedBag<T>
AbstractMutableSortedBag. toImmutable()
ImmutableSortedBag<T>
SynchronizedSortedBag. toImmutable()
ImmutableSortedBag<T>
UnmodifiableSortedBag. toImmutable()
-
Uses of ImmutableSortedBag in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection that return ImmutableSortedBag Modifier and Type Method Description ImmutableSortedBag<T>
AbstractSynchronizedRichIterable. toImmutableSortedBag()
ImmutableSortedBag<T>
AbstractSynchronizedRichIterable. toImmutableSortedBag(java.util.Comparator<? super T> comparator)
<V extends java.lang.Comparable<? super V>>
ImmutableSortedBag<T>AbstractSynchronizedRichIterable. toImmutableSortedBagBy(Function<? super T,? extends V> function)
-
Uses of ImmutableSortedBag in org.eclipse.collections.impl.collection.mutable
Methods in org.eclipse.collections.impl.collection.mutable that return ImmutableSortedBag Modifier and Type Method Description ImmutableSortedBag<T>
AbstractMultiReaderMutableCollection. toImmutableSortedBag()
ImmutableSortedBag<T>
AbstractMultiReaderMutableCollection. toImmutableSortedBag(java.util.Comparator<? super T> comparator)
<V extends java.lang.Comparable<? super V>>
ImmutableSortedBag<T>AbstractMultiReaderMutableCollection. toImmutableSortedBagBy(Function<? super T,? extends V> function)
-
Uses of ImmutableSortedBag in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector that return types with arguments of type ImmutableSortedBag Modifier and Type Method Description static <T> java.util.stream.Collector<T,?,ImmutableSortedBag<T>>
Collectors2. toImmutableSortedBag()
Returns the elements as an ImmutableSortedBag.static <T> java.util.stream.Collector<T,?,ImmutableSortedBag<T>>
Collectors2. toImmutableSortedBag(java.util.Comparator<? super T> comparator)
Returns the elements as an ImmutableSortedBag using the specified comparator.static <T,V extends java.lang.Comparable<? super V>>
java.util.stream.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
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableSortedBag Modifier and Type Method Description ImmutableSortedBag<V>
SynchronizedByteObjectMap. toImmutableSortedBag()
ImmutableSortedBag<V>
SynchronizedByteObjectMap. toImmutableSortedBag(java.util.Comparator<? super V> comparator)
ImmutableSortedBag<V>
SynchronizedCharObjectMap. toImmutableSortedBag()
ImmutableSortedBag<V>
SynchronizedCharObjectMap. toImmutableSortedBag(java.util.Comparator<? super V> comparator)
ImmutableSortedBag<V>
SynchronizedDoubleObjectMap. toImmutableSortedBag()
ImmutableSortedBag<V>
SynchronizedDoubleObjectMap. toImmutableSortedBag(java.util.Comparator<? super V> comparator)
ImmutableSortedBag<V>
SynchronizedFloatObjectMap. toImmutableSortedBag()
ImmutableSortedBag<V>
SynchronizedFloatObjectMap. toImmutableSortedBag(java.util.Comparator<? super V> comparator)
ImmutableSortedBag<V>
SynchronizedIntObjectMap. toImmutableSortedBag()
ImmutableSortedBag<V>
SynchronizedIntObjectMap. toImmutableSortedBag(java.util.Comparator<? super V> comparator)
ImmutableSortedBag<V>
SynchronizedLongObjectMap. toImmutableSortedBag()
ImmutableSortedBag<V>
SynchronizedLongObjectMap. toImmutableSortedBag(java.util.Comparator<? super V> comparator)
ImmutableSortedBag<V>
SynchronizedShortObjectMap. toImmutableSortedBag()
ImmutableSortedBag<V>
SynchronizedShortObjectMap. toImmutableSortedBag(java.util.Comparator<? super V> comparator)
<VV extends java.lang.Comparable<? super VV>>
ImmutableSortedBag<V>SynchronizedByteObjectMap. toImmutableSortedBagBy(Function<? super V,? extends VV> function)
<VV extends java.lang.Comparable<? super VV>>
ImmutableSortedBag<V>SynchronizedCharObjectMap. toImmutableSortedBagBy(Function<? super V,? extends VV> function)
<VV extends java.lang.Comparable<? super VV>>
ImmutableSortedBag<V>SynchronizedDoubleObjectMap. toImmutableSortedBagBy(Function<? super V,? extends VV> function)
<VV extends java.lang.Comparable<? super VV>>
ImmutableSortedBag<V>SynchronizedFloatObjectMap. toImmutableSortedBagBy(Function<? super V,? extends VV> function)
<VV extends java.lang.Comparable<? super VV>>
ImmutableSortedBag<V>SynchronizedIntObjectMap. toImmutableSortedBagBy(Function<? super V,? extends VV> function)
<VV extends java.lang.Comparable<? super VV>>
ImmutableSortedBag<V>SynchronizedLongObjectMap. toImmutableSortedBagBy(Function<? super V,? extends VV> function)
<VV extends java.lang.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
Methods in org.eclipse.collections.impl.multimap.bag.sorted.immutable that return ImmutableSortedBag Modifier and Type Method Description protected ImmutableSortedBag<V>
ImmutableSortedBagMultimapImpl. createCollection()
Constructor parameters in org.eclipse.collections.impl.multimap.bag.sorted.immutable with type arguments of type ImmutableSortedBag Constructor Description ImmutableSortedBagMultimapImpl(ImmutableMap<K,ImmutableSortedBag<V>> map)
ImmutableSortedBagMultimapImpl(ImmutableMap<K,ImmutableSortedBag<V>> map, java.util.Comparator<? super V> comparator)
ImmutableSortedBagMultimapImpl(MutableMap<K,ImmutableSortedBag<V>> map)
ImmutableSortedBagMultimapImpl(MutableMap<K,ImmutableSortedBag<V>> map, java.util.Comparator<? super V> comparator)
ImmutableSortedBagMultimapSerializationProxy(ImmutableMap<K,ImmutableSortedBag<V>> map, java.util.Comparator<? super V> comparator)
-
Uses of ImmutableSortedBag in org.eclipse.collections.impl.partition.bag.sorted
Fields in org.eclipse.collections.impl.partition.bag.sorted declared as ImmutableSortedBag Modifier and Type Field Description private ImmutableSortedBag<T>
PartitionImmutableSortedBagImpl. rejected
private ImmutableSortedBag<T>
PartitionImmutableSortedBagImpl. selected
Methods in org.eclipse.collections.impl.partition.bag.sorted that return ImmutableSortedBag Modifier and Type Method Description ImmutableSortedBag<T>
PartitionImmutableSortedBagImpl. getRejected()
ImmutableSortedBag<T>
PartitionImmutableSortedBagImpl. getSelected()
-