| Package | Description |
|---|---|
| org.eclipse.collections.api.bag.sorted |
This package contains interfaces for SortedBag API.
|
| org.eclipse.collections.api.map.sorted |
This package contains mutable and immutable sorted map interfaces.
|
| Modifier and Type | Method and Description |
|---|---|
SortedMapIterable<T,Integer> |
SortedBag.toMapOfItemToCount() |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ImmutableSortedMap<K,V>
An ImmutableSortedMap is different than a JCF SortedMap in that it has no mutating methods, but it shares
the read-only protocol of a SortedMap.
|
interface |
MutableSortedMap<K,V>
A MutableSortedMap is similar to a JCF Map but adds additional useful internal iterator methods.
|
| Modifier and Type | Method and Description |
|---|---|
<R> SortedMapIterable<K,R> |
SortedMapIterable.collectValues(Function2<? super K,? super V,? extends R> function) |
SortedMapIterable<K,V> |
SortedMapIterable.drop(int count) |
SortedMapIterable<K,V> |
SortedMapIterable.dropWhile(Predicate<? super V> predicate) |
SortedMapIterable<K,V> |
SortedMapIterable.reject(Predicate2<? super K,? super V> predicate) |
SortedMapIterable<K,V> |
SortedMapIterable.select(Predicate2<? super K,? super V> predicate) |
SortedMapIterable<K,V> |
SortedMapIterable.take(int count) |
SortedMapIterable<K,V> |
SortedMapIterable.takeWhile(Predicate<? super V> predicate) |
SortedMapIterable<K,V> |
SortedMapIterable.tap(Procedure<? super V> procedure) |
SortedMapIterable<K,V> |
SortedMapIterable.toReversed() |
Copyright © 2004–2021. All rights reserved.