| Package | Description |
|---|---|
| org.eclipse.collections.api.bag.sorted |
This package contains interfaces for SortedBag API.
|
| org.eclipse.collections.api.factory.bag.sorted | |
| org.eclipse.collections.api.multimap.sortedbag |
This package contains interfaces for
SortedBagMultimap. |
| org.eclipse.collections.api.partition.bag.sorted |
This package contains interfaces for
PartitionSortedBag. |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ImmutableSortedBag<T>
ImmutableSortedBag is the non-modifiable equivalent interface to
MutableSortedBag. |
interface |
MutableSortedBag<T> |
| Modifier and Type | Method and Description |
|---|---|
SortedBag<T> |
SortedBag.drop(int count) |
SortedBag<T> |
SortedBag.dropWhile(Predicate<? super T> predicate) |
SortedBag<T> |
SortedBag.reject(Predicate<? super T> predicate) |
<P> SortedBag<T> |
SortedBag.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
SortedBag<T> |
SortedBag.select(Predicate<? super T> predicate) |
SortedBag<T> |
SortedBag.selectByOccurrences(IntPredicate predicate) |
default SortedBag<T> |
SortedBag.selectDuplicates() |
<S> SortedBag<S> |
SortedBag.selectInstancesOf(Class<S> clazz) |
<P> SortedBag<T> |
SortedBag.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
SortedBag<T> |
SortedBag.take(int count) |
SortedBag<T> |
SortedBag.takeWhile(Predicate<? super T> predicate) |
SortedBag<T> |
SortedBag.tap(Procedure<? super T> procedure) |
SortedBag<T> |
SortedBag.toReversed() |
| Modifier and Type | Method and Description |
|---|---|
<T> ImmutableSortedBag<T> |
ImmutableSortedBagFactory.ofSortedBag(SortedBag<T> bag)
|
<T> ImmutableSortedBag<T> |
ImmutableSortedBagFactory.withSortedBag(SortedBag<T> bag) |
| Modifier and Type | Method and Description |
|---|---|
SortedBag<V> |
SortedBagMultimap.get(K key) |
| Modifier and Type | Method and Description |
|---|---|
SortedBag<T> |
PartitionSortedBag.getRejected() |
SortedBag<T> |
PartitionSortedBag.getSelected() |
Copyright © 2004–2023. All rights reserved.