Package | Description |
---|---|
com.gs.collections.api |
This package contains interfaces for GS Collections API.
|
com.gs.collections.api.bag.sorted |
This package contains interfaces for SortedBag API.
|
com.gs.collections.api.factory.map.sorted |
This package contains factory API for creating instances of type
SortedMapIterable . |
com.gs.collections.api.map.sorted |
This package contains mutable and immutable sorted map interfaces.
|
com.gs.collections.impl |
This package contains implementations for GS Collections API.
|
com.gs.collections.impl.bag.sorted.mutable |
This package contains implementations of
MutableSortedBag . |
com.gs.collections.impl.collection.mutable |
This package contains implementations of the
MutableCollection interface. |
com.gs.collections.impl.factory |
This package contains static utilities for creating mutable and immutable collection factories.
|
com.gs.collections.impl.lazy |
This package contains implementations of the
LazyIterable interface. |
com.gs.collections.impl.lazy.parallel | |
com.gs.collections.impl.map |
This package contains implementations of the
MapIterable interface. |
com.gs.collections.impl.map.mutable |
This package contains implementations of the
MutableMap interface. |
com.gs.collections.impl.map.mutable.primitive |
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
|
com.gs.collections.impl.map.sorted.immutable |
This package contains implementations of the
MutableSortedMap interface. |
com.gs.collections.impl.map.sorted.mutable |
This package contains implementations of the
MutableSortedMap interface. |
com.gs.collections.impl.set.mutable |
This package package contains implementations of
MutableSet . |
com.gs.collections.impl.set.strategy.mutable |
This package contains implementations of sets with user defined
HashingStrategy s. |
com.gs.collections.impl.stack.mutable |
This package contains implementations of the
MutableStack interface. |
Modifier and Type | Method and Description |
---|---|
<NK,NV> MutableSortedMap<NK,NV> |
RichIterable.toSortedMap(Comparator<? super NK> comparator,
Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction)
Converts the collection to a MutableSortedMap implementation using the specified key and value functions
sorted by the given comparator.
|
<NK,NV> MutableSortedMap<NK,NV> |
ParallelIterable.toSortedMap(Comparator<? super NK> comparator,
Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
RichIterable.toSortedMap(Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction)
Converts the collection to a MutableSortedMap implementation using the specified key and value functions
sorted by the key elements' natural ordering.
|
<NK,NV> MutableSortedMap<NK,NV> |
ParallelIterable.toSortedMap(Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
Modifier and Type | Method and Description |
---|---|
MutableSortedMap<T,Integer> |
SortedBag.toMapOfItemToCount() |
Modifier and Type | Method and Description |
---|---|
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactory.of()
Same as
MutableSortedMapFactory.with() . |
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactory.of(Comparator<? super K> comparator)
|
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactory.of(Comparator<? super K> comparator,
K key,
V value)
|
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactory.of(Comparator<? super K> comparator,
K key1,
V value1,
K key2,
V value2)
|
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactory.of(Comparator<? super K> comparator,
K key1,
V value1,
K key2,
V value2,
K key3,
V value3)
|
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactory.of(Comparator<? super K> comparator,
K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4)
|
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactory.of(K key,
V value)
|
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactory.of(K key1,
V value1,
K key2,
V value2)
|
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactory.of(K key1,
V value1,
K key2,
V value2,
K key3,
V value3)
|
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactory.of(K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4)
|
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactory.ofSortedMap(Map<? extends K,? extends V> map)
|
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactory.with() |
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactory.with(Comparator<? super K> comparator) |
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactory.with(Comparator<? super K> comparator,
K key,
V value) |
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactory.with(Comparator<? super K> comparator,
K key1,
V value1,
K key2,
V value2) |
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactory.with(Comparator<? super K> comparator,
K key1,
V value1,
K key2,
V value2,
K key3,
V value3) |
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactory.with(Comparator<? super K> comparator,
K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4) |
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactory.with(K key,
V value) |
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactory.with(K key1,
V value1,
K key2,
V value2) |
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactory.with(K key1,
V value1,
K key2,
V value2,
K key3,
V value3) |
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactory.with(K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4) |
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactory.withSortedMap(Map<? extends K,? extends V> map) |
Modifier and Type | Method and Description |
---|---|
MutableSortedMap<K,V> |
MutableSortedMap.asSynchronized()
Returns a synchronized (thread-safe) map backed by the specified
map.
|
MutableSortedMap<K,V> |
MutableSortedMap.asUnmodifiable()
Returns an unmodifiable view of this map.
|
MutableSortedMap<K,V> |
MutableSortedMap.clone() |
<E> MutableSortedMap<K,V> |
MutableSortedMap.collectKeysAndValues(Iterable<E> iterable,
Function<? super E,? extends K> keyFunction,
Function<? super E,? extends V> valueFunction)
Adds all the entries derived from
iterable to this . |
<R> MutableSortedMap<K,R> |
MutableSortedMap.collectValues(Function2<? super K,? super V,? extends R> function) |
MutableSortedMap<K,V> |
MutableSortedMap.headMap(K toKey) |
MutableSortedMap<K,V> |
MutableSortedMap.newEmpty()
Creates a new instance of the same type with the same internal Comparator.
|
MutableSortedMap<K,V> |
MutableSortedMap.reject(Predicate2<? super K,? super V> predicate) |
MutableSortedMap<K,V> |
MutableSortedMap.select(Predicate2<? super K,? super V> predicate) |
MutableSortedMap<K,V> |
MutableSortedMap.subMap(K fromKey,
K toKey) |
MutableSortedMap<K,V> |
MutableSortedMap.tailMap(K fromKey) |
MutableSortedMap<K,V> |
ImmutableSortedMap.toSortedMap() |
MutableSortedMap<K,V> |
MutableSortedMap.with(Pair<K,V>... pairs) |
Modifier and Type | Method and Description |
---|---|
<K,V> MutableSortedMap<K,V> |
AbstractRichIterable.toSortedMap(Comparator<? super K> comparator,
Function<? super T,? extends K> keyFunction,
Function<? super T,? extends V> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
SynchronizedRichIterable.toSortedMap(Comparator<? super NK> comparator,
Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
UnmodifiableRichIterable.toSortedMap(Comparator<? super NK> comparator,
Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<K,V> MutableSortedMap<K,V> |
AbstractRichIterable.toSortedMap(Function<? super T,? extends K> keyFunction,
Function<? super T,? extends V> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
SynchronizedRichIterable.toSortedMap(Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
UnmodifiableRichIterable.toSortedMap(Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
Modifier and Type | Method and Description |
---|---|
MutableSortedMap<T,Integer> |
TreeBag.toMapOfItemToCount() |
MutableSortedMap<T,Integer> |
UnmodifiableSortedBag.toMapOfItemToCount() |
Modifier and Type | Method and Description |
---|---|
<K,V> MutableSortedMap<K,V> |
AbstractCollectionAdapter.toSortedMap(Comparator<? super K> comparator,
Function<? super T,? extends K> keyFunction,
Function<? super T,? extends V> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
AbstractUnmodifiableMutableCollection.toSortedMap(Comparator<? super NK> comparator,
Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
AbstractMultiReaderMutableCollection.toSortedMap(Comparator<? super NK> comparator,
Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
AbstractSynchronizedMutableCollection.toSortedMap(Comparator<? super NK> comparator,
Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<K,V> MutableSortedMap<K,V> |
AbstractCollectionAdapter.toSortedMap(Function<? super T,? extends K> keyFunction,
Function<? super T,? extends V> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
AbstractUnmodifiableMutableCollection.toSortedMap(Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
AbstractMultiReaderMutableCollection.toSortedMap(Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
AbstractSynchronizedMutableCollection.toSortedMap(Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
Modifier and Type | Method and Description |
---|---|
static <K,V> MutableSortedMap<K,V> |
Iterables.mSortedMap() |
static <K,V> MutableSortedMap<K,V> |
Iterables.mSortedMap(Comparator<? super K> comparator) |
static <K,V> MutableSortedMap<K,V> |
Iterables.mSortedMap(Comparator<? super K> comparator,
K key,
V value) |
static <K,V> MutableSortedMap<K,V> |
Iterables.mSortedMap(Comparator<? super K> comparator,
K key1,
V value1,
K key2,
V value2) |
static <K,V> MutableSortedMap<K,V> |
Iterables.mSortedMap(Comparator<? super K> comparator,
K key1,
V value1,
K key2,
V value2,
K key3,
V value3) |
static <K,V> MutableSortedMap<K,V> |
Iterables.mSortedMap(Comparator<? super K> comparator,
K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4) |
static <K,V> MutableSortedMap<K,V> |
Iterables.mSortedMap(K key,
V value) |
static <K,V> MutableSortedMap<K,V> |
Iterables.mSortedMap(K key1,
V value1,
K key2,
V value2) |
static <K,V> MutableSortedMap<K,V> |
Iterables.mSortedMap(K key1,
V value1,
K key2,
V value2,
K key3,
V value3) |
static <K,V> MutableSortedMap<K,V> |
Iterables.mSortedMap(K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4) |
Modifier and Type | Method and Description |
---|---|
<NK,NV> MutableSortedMap<NK,NV> |
AbstractLazyIterable.toSortedMap(Comparator<? super NK> comparator,
Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
AbstractLazyIterable.toSortedMap(Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
Modifier and Type | Method and Description |
---|---|
<NK,NV> MutableSortedMap<NK,NV> |
AbstractParallelIterable.toSortedMap(Comparator<? super NK> comparator,
Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
AbstractParallelIterable.toSortedMap(Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
Modifier and Type | Method and Description |
---|---|
<NK,NV> MutableSortedMap<NK,NV> |
SynchronizedMapIterable.toSortedMap(Comparator<? super NK> comparator,
Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
AbstractMapIterable.toSortedMap(Comparator<? super NK> comparator,
Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
SynchronizedMapIterable.toSortedMap(Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
AbstractMapIterable.toSortedMap(Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
Modifier and Type | Method and Description |
---|---|
<NK,NV> MutableSortedMap<NK,NV> |
UnmodifiableMutableMap.toSortedMap(Comparator<? super NK> comparator,
Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
UnmodifiableMutableMap.toSortedMap(Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
Modifier and Type | Method and Description |
---|---|
<NK,NV> MutableSortedMap<NK,NV> |
UnmodifiableShortObjectMap.toSortedMap(Comparator<? super NK> comparator,
Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
SynchronizedCharObjectMap.toSortedMap(Comparator<? super NK> comparator,
Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
SynchronizedLongObjectMap.toSortedMap(Comparator<? super NK> comparator,
Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
UnmodifiableDoubleObjectMap.toSortedMap(Comparator<? super NK> comparator,
Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
ShortObjectHashMap.toSortedMap(Comparator<? super NK> comparator,
Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
SynchronizedDoubleObjectMap.toSortedMap(Comparator<? super NK> comparator,
Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
UnmodifiableFloatObjectMap.toSortedMap(Comparator<? super NK> comparator,
Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
IntObjectHashMap.toSortedMap(Comparator<? super NK> comparator,
Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
DoubleObjectHashMap.toSortedMap(Comparator<? super NK> comparator,
Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
SynchronizedFloatObjectMap.toSortedMap(Comparator<? super NK> comparator,
Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
CharObjectHashMap.toSortedMap(Comparator<? super NK> comparator,
Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
FloatObjectHashMap.toSortedMap(Comparator<? super NK> comparator,
Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
UnmodifiableIntObjectMap.toSortedMap(Comparator<? super NK> comparator,
Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
ByteObjectHashMap.toSortedMap(Comparator<? super NK> comparator,
Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
SynchronizedShortObjectMap.toSortedMap(Comparator<? super NK> comparator,
Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
SynchronizedByteObjectMap.toSortedMap(Comparator<? super NK> comparator,
Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
UnmodifiableLongObjectMap.toSortedMap(Comparator<? super NK> comparator,
Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
UnmodifiableByteObjectMap.toSortedMap(Comparator<? super NK> comparator,
Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
UnmodifiableCharObjectMap.toSortedMap(Comparator<? super NK> comparator,
Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
SynchronizedIntObjectMap.toSortedMap(Comparator<? super NK> comparator,
Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
LongObjectHashMap.toSortedMap(Comparator<? super NK> comparator,
Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
UnmodifiableShortObjectMap.toSortedMap(Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
SynchronizedCharObjectMap.toSortedMap(Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
SynchronizedLongObjectMap.toSortedMap(Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
UnmodifiableDoubleObjectMap.toSortedMap(Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
ShortObjectHashMap.toSortedMap(Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
SynchronizedDoubleObjectMap.toSortedMap(Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
UnmodifiableFloatObjectMap.toSortedMap(Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
IntObjectHashMap.toSortedMap(Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
DoubleObjectHashMap.toSortedMap(Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
SynchronizedFloatObjectMap.toSortedMap(Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
CharObjectHashMap.toSortedMap(Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
FloatObjectHashMap.toSortedMap(Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
UnmodifiableIntObjectMap.toSortedMap(Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
ByteObjectHashMap.toSortedMap(Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
SynchronizedShortObjectMap.toSortedMap(Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
SynchronizedByteObjectMap.toSortedMap(Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
UnmodifiableLongObjectMap.toSortedMap(Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
UnmodifiableByteObjectMap.toSortedMap(Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
UnmodifiableCharObjectMap.toSortedMap(Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
SynchronizedIntObjectMap.toSortedMap(Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
LongObjectHashMap.toSortedMap(Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
Modifier and Type | Method and Description |
---|---|
MutableSortedMap<K,V> |
AbstractImmutableSortedMap.toSortedMap() |
Modifier and Type | Class and Description |
---|---|
class |
AbstractMutableSortedMap<K,V> |
class |
SortedMapAdapter<K,V>
This class provides a MutableSortedMap wrapper around a JDK Collections SortedMap interface instance.
|
class |
SynchronizedSortedMap<K,V>
A synchronized view of a SortedMap.
|
class |
TreeSortedMap<K,V> |
class |
UnmodifiableTreeMap<K,V>
An unmodifiable view of a map.
|
Modifier and Type | Method and Description |
---|---|
static <K,V> MutableSortedMap<K,V> |
SortedMapAdapter.adapt(SortedMap<K,V> map) |
MutableSortedMap<K,V> |
SynchronizedSortedMap.asSynchronized() |
MutableSortedMap<K,V> |
UnmodifiableTreeMap.asSynchronized() |
MutableSortedMap<K,V> |
AbstractMutableSortedMap.asSynchronized() |
MutableSortedMap<K,V> |
SynchronizedSortedMap.asUnmodifiable() |
MutableSortedMap<K,V> |
UnmodifiableTreeMap.asUnmodifiable() |
MutableSortedMap<K,V> |
AbstractMutableSortedMap.asUnmodifiable() |
MutableSortedMap<K,V> |
SynchronizedSortedMap.clone() |
MutableSortedMap<K,V> |
UnmodifiableTreeMap.clone() |
MutableSortedMap<K,V> |
SortedMapAdapter.clone() |
MutableSortedMap<K,V> |
AbstractMutableSortedMap.clone() |
<E> MutableSortedMap<K,V> |
SynchronizedSortedMap.collectKeysAndValues(Iterable<E> iterable,
Function<? super E,? extends K> keyFunction,
Function<? super E,? extends V> function) |
<E> MutableSortedMap<K,V> |
UnmodifiableTreeMap.collectKeysAndValues(Iterable<E> iterable,
Function<? super E,? extends K> keyFunction,
Function<? super E,? extends V> valueFunction) |
<E> MutableSortedMap<K,V> |
AbstractMutableSortedMap.collectKeysAndValues(Iterable<E> iterable,
Function<? super E,? extends K> keyFunction,
Function<? super E,? extends V> valueFunction) |
<R> MutableSortedMap<K,R> |
SynchronizedSortedMap.collectValues(Function2<? super K,? super V,? extends R> function) |
<R> MutableSortedMap<K,R> |
UnmodifiableTreeMap.collectValues(Function2<? super K,? super V,? extends R> function) |
<R> MutableSortedMap<K,R> |
AbstractMutableSortedMap.collectValues(Function2<? super K,? super V,? extends R> function) |
MutableSortedMap<K,V> |
SynchronizedSortedMap.headMap(K toKey) |
MutableSortedMap<K,V> |
UnmodifiableTreeMap.headMap(K toKey) |
MutableSortedMap<K,V> |
TreeSortedMap.headMap(K toKey) |
MutableSortedMap<K,V> |
SortedMapAdapter.headMap(K toKey) |
MutableSortedMap<K,V> |
SynchronizedSortedMap.newEmpty() |
MutableSortedMap<K,V> |
UnmodifiableTreeMap.newEmpty() |
MutableSortedMap<K,V> |
TreeSortedMap.newEmpty() |
MutableSortedMap<K,V> |
SortedMapAdapter.newEmpty()
Deprecated.
use
TreeSortedMap.newEmpty() instead (inlineable) |
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactoryImpl.of() |
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactoryImpl.of(Comparator<? super K> comparator) |
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactoryImpl.of(Comparator<? super K> comparator,
K key,
V value) |
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactoryImpl.of(Comparator<? super K> comparator,
K key1,
V value1,
K key2,
V value2) |
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactoryImpl.of(Comparator<? super K> comparator,
K key1,
V value1,
K key2,
V value2,
K key3,
V value3) |
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactoryImpl.of(Comparator<? super K> comparator,
K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4) |
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactoryImpl.of(K key,
V value) |
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactoryImpl.of(K key1,
V value1,
K key2,
V value2) |
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactoryImpl.of(K key1,
V value1,
K key2,
V value2,
K key3,
V value3) |
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactoryImpl.of(K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4) |
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactoryImpl.ofSortedMap(Map<? extends K,? extends V> map) |
MutableSortedMap<K,V> |
SynchronizedSortedMap.reject(Predicate2<? super K,? super V> predicate) |
MutableSortedMap<K,V> |
UnmodifiableTreeMap.reject(Predicate2<? super K,? super V> predicate) |
MutableSortedMap<K,V> |
AbstractMutableSortedMap.reject(Predicate2<? super K,? super V> predicate) |
MutableSortedMap<K,V> |
SynchronizedSortedMap.select(Predicate2<? super K,? super V> predicate) |
MutableSortedMap<K,V> |
UnmodifiableTreeMap.select(Predicate2<? super K,? super V> predicate) |
MutableSortedMap<K,V> |
AbstractMutableSortedMap.select(Predicate2<? super K,? super V> predicate) |
MutableSortedMap<K,V> |
SynchronizedSortedMap.subMap(K fromKey,
K toKey) |
MutableSortedMap<K,V> |
UnmodifiableTreeMap.subMap(K fromKey,
K toKey) |
MutableSortedMap<K,V> |
TreeSortedMap.subMap(K fromKey,
K toKey) |
MutableSortedMap<K,V> |
SortedMapAdapter.subMap(K fromKey,
K toKey) |
MutableSortedMap<K,V> |
SynchronizedSortedMap.tailMap(K fromKey) |
MutableSortedMap<K,V> |
UnmodifiableTreeMap.tailMap(K fromKey) |
MutableSortedMap<K,V> |
TreeSortedMap.tailMap(K fromKey) |
MutableSortedMap<K,V> |
SortedMapAdapter.tailMap(K fromKey) |
<NK,NV> MutableSortedMap<NK,NV> |
UnmodifiableTreeMap.toSortedMap(Comparator<? super NK> comparator,
Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
UnmodifiableTreeMap.toSortedMap(Function<? super V,? extends NK> keyFunction,
Function<? super V,? extends NV> valueFunction) |
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactoryImpl.with() |
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactoryImpl.with(Comparator<? super K> comparator) |
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactoryImpl.with(Comparator<? super K> comparator,
K key,
V value) |
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactoryImpl.with(Comparator<? super K> comparator,
K key1,
V value1,
K key2,
V value2) |
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactoryImpl.with(Comparator<? super K> comparator,
K key1,
V value1,
K key2,
V value2,
K key3,
V value3) |
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactoryImpl.with(Comparator<? super K> comparator,
K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4) |
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactoryImpl.with(K key,
V value) |
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactoryImpl.with(K key1,
V value1,
K key2,
V value2) |
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactoryImpl.with(K key1,
V value1,
K key2,
V value2,
K key3,
V value3) |
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactoryImpl.with(K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4) |
MutableSortedMap<K,V> |
SynchronizedSortedMap.with(Pair<K,V>... pairs) |
MutableSortedMap<K,V> |
UnmodifiableTreeMap.with(Pair<K,V>... pairs) |
MutableSortedMap<K,V> |
SortedMapAdapter.with(Pair<K,V>... pairs) |
<K,V> MutableSortedMap<K,V> |
MutableSortedMapFactoryImpl.withSortedMap(Map<? extends K,? extends V> map) |
Modifier and Type | Method and Description |
---|---|
<NK,NV> MutableSortedMap<NK,NV> |
UnifiedSet.toSortedMap(Comparator<? super NK> comparator,
Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
UnifiedSet.toSortedMap(Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
Modifier and Type | Method and Description |
---|---|
<NK,NV> MutableSortedMap<NK,NV> |
UnifiedSetWithHashingStrategy.toSortedMap(Comparator<? super NK> comparator,
Function<? super K,? extends NK> keyFunction,
Function<? super K,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
UnifiedSetWithHashingStrategy.toSortedMap(Function<? super K,? extends NK> keyFunction,
Function<? super K,? extends NV> valueFunction) |
Modifier and Type | Method and Description |
---|---|
<NK,NV> MutableSortedMap<NK,NV> |
ArrayStack.toSortedMap(Comparator<? super NK> comparator,
Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
UnmodifiableStack.toSortedMap(Comparator<? super NK> comparator,
Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
SynchronizedStack.toSortedMap(Comparator<? super NK> comparator,
Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
ArrayStack.toSortedMap(Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
UnmodifiableStack.toSortedMap(Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
<NK,NV> MutableSortedMap<NK,NV> |
SynchronizedStack.toSortedMap(Function<? super T,? extends NK> keyFunction,
Function<? super T,? extends NV> valueFunction) |
Copyright © 2004–2019. All rights reserved.