| Package | Description |
|---|---|
| org.eclipse.collections.api.factory.map.sorted |
This package contains factory API for creating instances of type
SortedMapIterable. |
| org.eclipse.collections.api.map.sorted |
This package contains mutable and immutable sorted map interfaces.
|
| Modifier and Type | Method and Description |
|---|---|
<K,V> ImmutableSortedMap<K,V> |
ImmutableSortedMapFactory.empty() |
<K,V> ImmutableSortedMap<K,V> |
ImmutableSortedMapFactory.of()
Same as
ImmutableSortedMapFactory.empty(). |
<K,V> ImmutableSortedMap<K,V> |
ImmutableSortedMapFactory.of(Comparator<? super K> comparator)
|
<K,V> ImmutableSortedMap<K,V> |
ImmutableSortedMapFactory.of(Comparator<? super K> comparator,
K key,
V value)
|
<K,V> ImmutableSortedMap<K,V> |
ImmutableSortedMapFactory.of(Comparator<? super K> comparator,
K key1,
V value1,
K key2,
V value2)
|
<K,V> ImmutableSortedMap<K,V> |
ImmutableSortedMapFactory.of(Comparator<? super K> comparator,
K key1,
V value1,
K key2,
V value2,
K key3,
V value3)
|
<K,V> ImmutableSortedMap<K,V> |
ImmutableSortedMapFactory.of(Comparator<? super K> comparator,
K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4)
|
<K,V> ImmutableSortedMap<K,V> |
ImmutableSortedMapFactory.of(K key,
V value)
|
<K,V> ImmutableSortedMap<K,V> |
ImmutableSortedMapFactory.of(K key1,
V value1,
K key2,
V value2)
|
<K,V> ImmutableSortedMap<K,V> |
ImmutableSortedMapFactory.of(K key1,
V value1,
K key2,
V value2,
K key3,
V value3)
|
<K,V> ImmutableSortedMap<K,V> |
ImmutableSortedMapFactory.of(K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4)
|
<K,V> ImmutableSortedMap<K,V> |
ImmutableSortedMapFactory.ofSortedMap(SortedMap<K,V> map)
|
<K,V> ImmutableSortedMap<K,V> |
ImmutableSortedMapFactory.with()
Same as
ImmutableSortedMapFactory.empty(). |
<K,V> ImmutableSortedMap<K,V> |
ImmutableSortedMapFactory.with(Comparator<? super K> comparator) |
<K,V> ImmutableSortedMap<K,V> |
ImmutableSortedMapFactory.with(Comparator<? super K> comparator,
K key,
V value) |
<K,V> ImmutableSortedMap<K,V> |
ImmutableSortedMapFactory.with(Comparator<? super K> comparator,
K key1,
V value1,
K key2,
V value2) |
<K,V> ImmutableSortedMap<K,V> |
ImmutableSortedMapFactory.with(Comparator<? super K> comparator,
K key1,
V value1,
K key2,
V value2,
K key3,
V value3) |
<K,V> ImmutableSortedMap<K,V> |
ImmutableSortedMapFactory.with(Comparator<? super K> comparator,
K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4) |
<K,V> ImmutableSortedMap<K,V> |
ImmutableSortedMapFactory.with(K key,
V value) |
<K,V> ImmutableSortedMap<K,V> |
ImmutableSortedMapFactory.with(K key1,
V value1,
K key2,
V value2) |
<K,V> ImmutableSortedMap<K,V> |
ImmutableSortedMapFactory.with(K key1,
V value1,
K key2,
V value2,
K key3,
V value3) |
<K,V> ImmutableSortedMap<K,V> |
ImmutableSortedMapFactory.with(K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4) |
<K,V> ImmutableSortedMap<K,V> |
ImmutableSortedMapFactory.withSortedMap(SortedMap<K,V> map) |
| Modifier and Type | Method and Description |
|---|---|
<R> ImmutableSortedMap<K,R> |
ImmutableSortedMap.collectValues(Function2<? super K,? super V,? extends R> function) |
ImmutableSortedMap<K,V> |
ImmutableSortedMap.newWithAllKeyValueArguments(Pair<? extends K,? extends V>... keyValuePairs) |
ImmutableSortedMap<K,V> |
ImmutableSortedMap.newWithAllKeyValues(Iterable<? extends Pair<? extends K,? extends V>> keyValues) |
ImmutableSortedMap<K,V> |
ImmutableSortedMap.newWithKeyValue(K key,
V value) |
ImmutableSortedMap<K,V> |
ImmutableSortedMap.newWithMap(Map<? extends K,? extends V> map) |
ImmutableSortedMap<K,V> |
ImmutableSortedMap.newWithMapIterable(MapIterable<? extends K,? extends V> mapIterable) |
ImmutableSortedMap<K,V> |
ImmutableSortedMap.newWithoutAllKeys(Iterable<? extends K> keys) |
ImmutableSortedMap<K,V> |
ImmutableSortedMap.newWithoutKey(K key) |
ImmutableSortedMap<K,V> |
ImmutableSortedMap.reject(Predicate2<? super K,? super V> predicate) |
ImmutableSortedMap<K,V> |
ImmutableSortedMap.select(Predicate2<? super K,? super V> predicate) |
ImmutableSortedMap<K,V> |
ImmutableSortedMap.tap(Procedure<? super V> procedure) |
ImmutableSortedMap<K,V> |
SortedMapIterable.toImmutable()
Converts the SortedMapIterable to an immutable implementation.
|
Copyright © 2004–2023. All rights reserved.