Uses of Interface
org.eclipse.collections.api.map.sorted.MutableSortedMap
-
Packages that use MutableSortedMap Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag.sorted This package contains interfaces for SortedBag API.org.eclipse.collections.api.factory.map.sorted This package contains factory API for creating instances of typeSortedMapIterable
.org.eclipse.collections.api.map.sorted This package contains mutable and immutable sorted map interfaces.org.eclipse.collections.impl This package contains implementations for Eclipse Collections API.org.eclipse.collections.impl.bag.immutable This package contains implementations of theImmutableBag
interface.org.eclipse.collections.impl.bag.sorted.immutable org.eclipse.collections.impl.bag.sorted.mutable This package contains implementations ofMutableSortedBag
.org.eclipse.collections.impl.bimap org.eclipse.collections.impl.bimap.mutable This package contains implementations of theMutableBiMap
interface.org.eclipse.collections.impl.collection org.eclipse.collections.impl.collection.mutable This package contains implementations of theMutableCollection
interface.org.eclipse.collections.impl.collector org.eclipse.collections.impl.factory This package contains static utilities for creating mutable and immutable collection factories.org.eclipse.collections.impl.lazy.parallel org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.mutable This package contains implementations of theMutableMap
interface.org.eclipse.collections.impl.map.mutable.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.ordered.mutable org.eclipse.collections.impl.map.sorted.immutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.map.sorted.mutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.stack.immutable This package contains implementations of theImmutableStack
interface.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStack
interface. -
-
Uses of MutableSortedMap in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableSortedMap Modifier and Type Method Description <NK,NV>
MutableSortedMap<NK,NV>ParallelIterable. toSortedMap(java.util.Comparator<? super NK> comparator, Function<? super T,? extends NK> keyFunction, Function<? super T,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ParallelIterable. toSortedMap(Function<? super T,? extends NK> keyFunction, Function<? super T,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>RichIterable. toSortedMap(java.util.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>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.default <KK extends java.lang.Comparable<? super KK>,NK,NV>
MutableSortedMap<NK,NV>RichIterable. toSortedMapBy(Function<? super NK,KK> sortBy, 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 and sorts it based on the natural order of the attribute returned bysortBy
function. -
Uses of MutableSortedMap in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return MutableSortedMap Modifier and Type Method Description MutableSortedMap<T,java.lang.Integer>
ImmutableSortedBag. toMapOfItemToCount()
MutableSortedMap<T,java.lang.Integer>
MutableSortedBag. toMapOfItemToCount()
-
Uses of MutableSortedMap in org.eclipse.collections.api.factory.map.sorted
Methods in org.eclipse.collections.api.factory.map.sorted that return MutableSortedMap Modifier and Type Method Description <K,V>
MutableSortedMap<K,V>MutableSortedMapFactory. empty()
<K,V>
MutableSortedMap<K,V>MutableSortedMapFactory. of()
Same asMutableSortedMapFactory.empty()
.<K,V>
MutableSortedMap<K,V>MutableSortedMapFactory. of(java.util.Comparator<? super K> comparator)
<K,V>
MutableSortedMap<K,V>MutableSortedMapFactory. of(java.util.Comparator<? super K> comparator, K key, V value)
<K,V>
MutableSortedMap<K,V>MutableSortedMapFactory. of(java.util.Comparator<? super K> comparator, K key1, V value1, K key2, V value2)
<K,V>
MutableSortedMap<K,V>MutableSortedMapFactory. of(java.util.Comparator<? super K> comparator, K key1, V value1, K key2, V value2, K key3, V value3)
<K,V>
MutableSortedMap<K,V>MutableSortedMapFactory. of(java.util.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(java.util.Map<? extends K,? extends V> map)
<K,V>
MutableSortedMap<K,V>MutableSortedMapFactory. with()
Same asMutableSortedMapFactory.empty()
.<K,V>
MutableSortedMap<K,V>MutableSortedMapFactory. with(java.util.Comparator<? super K> comparator)
<K,V>
MutableSortedMap<K,V>MutableSortedMapFactory. with(java.util.Comparator<? super K> comparator, K key, V value)
<K,V>
MutableSortedMap<K,V>MutableSortedMapFactory. with(java.util.Comparator<? super K> comparator, K key1, V value1, K key2, V value2)
<K,V>
MutableSortedMap<K,V>MutableSortedMapFactory. with(java.util.Comparator<? super K> comparator, K key1, V value1, K key2, V value2, K key3, V value3)
<K,V>
MutableSortedMap<K,V>MutableSortedMapFactory. with(java.util.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(java.util.Map<? extends K,? extends V> map)
-
Uses of MutableSortedMap in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return MutableSortedMap Modifier and Type Method Description MutableSortedMap<K,V>
MutableSortedMap. asSynchronized()
MutableSortedMap<K,V>
MutableSortedMap. asUnmodifiable()
MutableSortedMap<K,V>
MutableSortedMap. clone()
<E> MutableSortedMap<K,V>
MutableSortedMap. collectKeysAndValues(java.lang.Iterable<E> iterable, Function<? super E,? extends K> keyFunction, Function<? super E,? extends V> valueFunction)
Adds all the entries derived fromiterable
tothis
.<R> MutableSortedMap<K,R>
MutableSortedMap. collectValues(Function2<? super K,? super V,? extends R> function)
MutableSortedMap<K,V>
MutableSortedMap. drop(int count)
MutableSortedMap<K,V>
MutableSortedMap. dropWhile(Predicate<? super V> predicate)
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>
MutableSortedMap. take(int count)
MutableSortedMap<K,V>
MutableSortedMap. takeWhile(Predicate<? super V> predicate)
MutableSortedMap<K,V>
MutableSortedMap. tap(Procedure<? super V> procedure)
MutableSortedMap<K,V>
MutableSortedMap. toReversed()
MutableSortedMap<K,V>
ImmutableSortedMap. toSortedMap()
default MutableSortedMap<K,V>
MutableSortedMap. with(Pair<K,V>... pairs)
Deprecated.in 6.0 UsewithAllKeyValueArguments(Pair[])
instead.MutableSortedMap<K,V>
MutableSortedMap. withAllKeyValueArguments(Pair<? extends K,? extends V>... keyValuePairs)
MutableSortedMap<K,V>
MutableSortedMap. withAllKeyValues(java.lang.Iterable<? extends Pair<? extends K,? extends V>> keyValues)
MutableSortedMap<K,V>
MutableSortedMap. withKeyValue(K key, V value)
default MutableSortedMap<K,V>
MutableSortedMap. withMap(java.util.Map<? extends K,? extends V> map)
default MutableSortedMap<K,V>
MutableSortedMap. withMapIterable(MapIterable<? extends K,? extends V> mapIterable)
MutableSortedMap<K,V>
MutableSortedMap. withoutAllKeys(java.lang.Iterable<? extends K> keys)
MutableSortedMap<K,V>
MutableSortedMap. withoutKey(K key)
-
Uses of MutableSortedMap in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl that return MutableSortedMap Modifier and Type Method Description <K,V>
MutableSortedMap<K,V>AbstractRichIterable. toSortedMap(java.util.Comparator<? super K> comparator, Function<? super T,? extends K> keyFunction, Function<? super T,? extends V> 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>UnmodifiableRichIterable. toSortedMap(java.util.Comparator<? super NK> comparator, 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)
<KK extends java.lang.Comparable<? super KK>,NK,NV>
MutableSortedMap<NK,NV>AbstractRichIterable. toSortedMapBy(Function<? super NK,KK> sortBy, Function<? super T,? extends NK> keyFunction, Function<? super T,? extends NV> valueFunction)
-
Uses of MutableSortedMap in org.eclipse.collections.impl.bag.immutable
Methods in org.eclipse.collections.impl.bag.immutable that return MutableSortedMap Modifier and Type Method Description <NK,NV>
MutableSortedMap<NK,NV>ImmutableEmptyBag. toSortedMap(java.util.Comparator<? super NK> comparator, Function<? super T,? extends NK> keyFunction, Function<? super T,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ImmutableEmptyBag. toSortedMap(Function<? super T,? extends NK> keyFunction, Function<? super T,? extends NV> valueFunction)
<K,V>
MutableSortedMap<K,V>ImmutableHashBag. toSortedMap(java.util.Comparator<? super K> comparator, Function<? super T,? extends K> keyFunction, Function<? super T,? extends V> valueFunction)
<K,V>
MutableSortedMap<K,V>ImmutableHashBag. toSortedMap(Function<? super T,? extends K> keyFunction, Function<? super T,? extends V> valueFunction)
-
Uses of MutableSortedMap in org.eclipse.collections.impl.bag.sorted.immutable
Methods in org.eclipse.collections.impl.bag.sorted.immutable that return MutableSortedMap Modifier and Type Method Description MutableSortedMap<T,java.lang.Integer>
ImmutableEmptySortedBag. toMapOfItemToCount()
MutableSortedMap<T,java.lang.Integer>
ImmutableSortedBagImpl. toMapOfItemToCount()
-
Uses of MutableSortedMap in org.eclipse.collections.impl.bag.sorted.mutable
Fields in org.eclipse.collections.impl.bag.sorted.mutable declared as MutableSortedMap Modifier and Type Field Description private MutableSortedMap<T,Counter>
TreeBag. items
Methods in org.eclipse.collections.impl.bag.sorted.mutable that return MutableSortedMap Modifier and Type Method Description MutableSortedMap<T,java.lang.Integer>
AbstractMutableSortedBag. toMapOfItemToCount()
MutableSortedMap<T,java.lang.Integer>
SynchronizedSortedBag. toMapOfItemToCount()
MutableSortedMap<T,java.lang.Integer>
UnmodifiableSortedBag. toMapOfItemToCount()
Constructors in org.eclipse.collections.impl.bag.sorted.mutable with parameters of type MutableSortedMap Constructor Description TreeBag(MutableSortedMap<T,Counter> map)
-
Uses of MutableSortedMap in org.eclipse.collections.impl.bimap
Methods in org.eclipse.collections.impl.bimap that return MutableSortedMap Modifier and Type Method Description <NK,NV>
MutableSortedMap<NK,NV>AbstractBiMap. toSortedMap(java.util.Comparator<? super NK> comparator, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>AbstractBiMap. toSortedMap(Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
-
Uses of MutableSortedMap in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable that return MutableSortedMap Modifier and Type Method Description <NK,NV>
MutableSortedMap<NK,NV>UnmodifiableBiMap. toSortedMap(java.util.Comparator<? super NK> comparator, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>UnmodifiableBiMap. toSortedMap(Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
-
Uses of MutableSortedMap in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection that return MutableSortedMap Modifier and Type Method Description <NK,NV>
MutableSortedMap<NK,NV>AbstractSynchronizedRichIterable. toSortedMap(java.util.Comparator<? super NK> comparator, Function<? super T,? extends NK> keyFunction, Function<? super T,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>AbstractSynchronizedRichIterable. toSortedMap(Function<? super T,? extends NK> keyFunction, Function<? super T,? extends NV> valueFunction)
<KK extends java.lang.Comparable<? super KK>,NK,NV>
MutableSortedMap<NK,NV>AbstractSynchronizedRichIterable. toSortedMapBy(Function<? super NK,KK> sortBy, Function<? super T,? extends NK> keyFunction, Function<? super T,? extends NV> valueFunction)
-
Uses of MutableSortedMap in org.eclipse.collections.impl.collection.mutable
Methods in org.eclipse.collections.impl.collection.mutable that return MutableSortedMap Modifier and Type Method Description <K,V>
MutableSortedMap<K,V>AbstractCollectionAdapter. toSortedMap(java.util.Comparator<? super K> comparator, Function<? super T,? extends K> keyFunction, Function<? super T,? extends V> 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>AbstractMultiReaderMutableCollection. toSortedMap(java.util.Comparator<? super NK> comparator, 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>AbstractMultiReaderMutableCollection.UntouchableMutableCollection. toSortedMap(java.util.Comparator<? super NK> comparator, Function<? super T,? extends NK> keyFunction, Function<? super T,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>AbstractMultiReaderMutableCollection.UntouchableMutableCollection. toSortedMap(Function<? super T,? extends NK> keyFunction, Function<? super T,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>AbstractUnmodifiableMutableCollection. toSortedMap(java.util.Comparator<? super NK> comparator, Function<? super T,? extends NK> keyFunction, Function<? super T,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>AbstractUnmodifiableMutableCollection. toSortedMap(Function<? super T,? extends NK> keyFunction, Function<? super T,? extends NV> valueFunction)
<KK extends java.lang.Comparable<? super KK>,NK,NV>
MutableSortedMap<NK,NV>AbstractMultiReaderMutableCollection.UntouchableMutableCollection. toSortedMapBy(Function<? super NK,KK> sortBy, Function<? super T,? extends NK> keyFunction, Function<? super T,? extends NV> valueFunction)
<KK extends java.lang.Comparable<? super KK>,NK,NV>
MutableSortedMap<NK,NV>AbstractUnmodifiableMutableCollection. toSortedMapBy(Function<? super NK,KK> sortBy, Function<? super T,? extends NK> keyFunction, Function<? super T,? extends NV> valueFunction)
-
Uses of MutableSortedMap in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector that return types with arguments of type MutableSortedMap Modifier and Type Method Description static <T,K,V>
java.util.stream.Collector<T,?,MutableSortedMap<K,V>>Collectors2. toSortedMap(java.util.Comparator<? super K> comparator, Function<? super T,? extends K> keyFunction, Function<? super T,? extends V> valueFunction)
Returns the elements as a MutableSortedMap that has been sorted using the specified comparator after applying the keyFunction and valueFunction to each element.static <T,K,V>
java.util.stream.Collector<T,?,MutableSortedMap<K,V>>Collectors2. toSortedMap(Function<? super T,? extends K> keyFunction, Function<? super T,? extends V> valueFunction)
Returns the elements as a MutableSortedMap that has been sorted after applying the keyFunction and valueFunction to each element.static <T,KK extends java.lang.Comparable<? super KK>,K,V>
java.util.stream.Collector<T,?,MutableSortedMap<K,V>>Collectors2. toSortedMapBy(Function<? super K,KK> sortBy, Function<? super T,? extends K> keyFunction, Function<? super T,? extends V> valueFunction)
Returns the elements as a MutableSortedMap that has been sorted using the specified comparator after applying the keyFunction and valueFunction to each element. -
Uses of MutableSortedMap in org.eclipse.collections.impl.factory
Methods in org.eclipse.collections.impl.factory that return MutableSortedMap Modifier and Type Method Description static <K,V>
MutableSortedMap<K,V>SortedMaps. adapt(java.util.SortedMap<K,V> list)
static <K,V>
MutableSortedMap<K,V>Iterables. mSortedMap()
static <K,V>
MutableSortedMap<K,V>Iterables. mSortedMap(java.util.Comparator<? super K> comparator)
static <K,V>
MutableSortedMap<K,V>Iterables. mSortedMap(java.util.Comparator<? super K> comparator, K key, V value)
static <K,V>
MutableSortedMap<K,V>Iterables. mSortedMap(java.util.Comparator<? super K> comparator, K key1, V value1, K key2, V value2)
static <K,V>
MutableSortedMap<K,V>Iterables. mSortedMap(java.util.Comparator<? super K> comparator, K key1, V value1, K key2, V value2, K key3, V value3)
static <K,V>
MutableSortedMap<K,V>Iterables. mSortedMap(java.util.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)
-
Uses of MutableSortedMap in org.eclipse.collections.impl.lazy.parallel
Methods in org.eclipse.collections.impl.lazy.parallel that return MutableSortedMap Modifier and Type Method Description <NK,NV>
MutableSortedMap<NK,NV>AbstractMultiReaderParallelIterable. toSortedMap(java.util.Comparator<? super NK> comparator, Function<? super T,? extends NK> keyFunction, Function<? super T,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>AbstractMultiReaderParallelIterable. toSortedMap(Function<? super T,? extends NK> keyFunction, Function<? super T,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>AbstractParallelIterable. toSortedMap(java.util.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)
<NK,NV>
MutableSortedMap<NK,NV>AbstractSynchronizedParallelIterable. toSortedMap(java.util.Comparator<? super NK> comparator, Function<? super T,? extends NK> keyFunction, Function<? super T,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>AbstractSynchronizedParallelIterable. toSortedMap(Function<? super T,? extends NK> keyFunction, Function<? super T,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>NonParallelIterable. toSortedMap(java.util.Comparator<? super NK> comparator, Function<? super T,? extends NK> keyFunction, Function<? super T,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>NonParallelIterable. toSortedMap(Function<? super T,? extends NK> keyFunction, Function<? super T,? extends NV> valueFunction)
-
Uses of MutableSortedMap in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return MutableSortedMap Modifier and Type Method Description <NK,NV>
MutableSortedMap<NK,NV>ImmutableByteObjectEmptyMap. toSortedMap(java.util.Comparator<? super NK> comparator, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ImmutableByteObjectEmptyMap. toSortedMap(Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ImmutableByteObjectHashMap. toSortedMap(java.util.Comparator<? super NK> comparator, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ImmutableByteObjectHashMap. toSortedMap(Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ImmutableByteObjectSingletonMap. toSortedMap(java.util.Comparator<? super NK> comparator, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ImmutableByteObjectSingletonMap. toSortedMap(Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ImmutableCharObjectEmptyMap. toSortedMap(java.util.Comparator<? super NK> comparator, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ImmutableCharObjectEmptyMap. toSortedMap(Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ImmutableCharObjectHashMap. toSortedMap(java.util.Comparator<? super NK> comparator, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ImmutableCharObjectHashMap. toSortedMap(Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ImmutableCharObjectSingletonMap. toSortedMap(java.util.Comparator<? super NK> comparator, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ImmutableCharObjectSingletonMap. toSortedMap(Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ImmutableDoubleObjectEmptyMap. toSortedMap(java.util.Comparator<? super NK> comparator, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ImmutableDoubleObjectEmptyMap. toSortedMap(Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ImmutableDoubleObjectHashMap. toSortedMap(java.util.Comparator<? super NK> comparator, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ImmutableDoubleObjectHashMap. toSortedMap(Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ImmutableDoubleObjectSingletonMap. toSortedMap(java.util.Comparator<? super NK> comparator, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ImmutableDoubleObjectSingletonMap. toSortedMap(Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ImmutableFloatObjectEmptyMap. toSortedMap(java.util.Comparator<? super NK> comparator, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ImmutableFloatObjectEmptyMap. toSortedMap(Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ImmutableFloatObjectHashMap. toSortedMap(java.util.Comparator<? super NK> comparator, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ImmutableFloatObjectHashMap. toSortedMap(Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ImmutableFloatObjectSingletonMap. toSortedMap(java.util.Comparator<? super NK> comparator, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ImmutableFloatObjectSingletonMap. toSortedMap(Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ImmutableIntObjectEmptyMap. toSortedMap(java.util.Comparator<? super NK> comparator, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ImmutableIntObjectEmptyMap. toSortedMap(Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ImmutableIntObjectHashMap. toSortedMap(java.util.Comparator<? super NK> comparator, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ImmutableIntObjectHashMap. toSortedMap(Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ImmutableIntObjectSingletonMap. toSortedMap(java.util.Comparator<? super NK> comparator, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ImmutableIntObjectSingletonMap. toSortedMap(Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ImmutableLongObjectEmptyMap. toSortedMap(java.util.Comparator<? super NK> comparator, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ImmutableLongObjectEmptyMap. toSortedMap(Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ImmutableLongObjectHashMap. toSortedMap(java.util.Comparator<? super NK> comparator, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ImmutableLongObjectHashMap. toSortedMap(Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ImmutableLongObjectSingletonMap. toSortedMap(java.util.Comparator<? super NK> comparator, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ImmutableLongObjectSingletonMap. toSortedMap(Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ImmutableShortObjectEmptyMap. toSortedMap(java.util.Comparator<? super NK> comparator, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ImmutableShortObjectEmptyMap. toSortedMap(Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ImmutableShortObjectHashMap. toSortedMap(java.util.Comparator<? super NK> comparator, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ImmutableShortObjectHashMap. toSortedMap(Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ImmutableShortObjectSingletonMap. toSortedMap(java.util.Comparator<? super NK> comparator, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>ImmutableShortObjectSingletonMap. toSortedMap(Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<KK extends java.lang.Comparable<? super KK>,NK,NV>
MutableSortedMap<NK,NV>ImmutableByteObjectEmptyMap. toSortedMapBy(Function<? super NK,KK> sortBy, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<KK extends java.lang.Comparable<? super KK>,NK,NV>
MutableSortedMap<NK,NV>ImmutableByteObjectSingletonMap. toSortedMapBy(Function<? super NK,KK> sortBy, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<KK extends java.lang.Comparable<? super KK>,NK,NV>
MutableSortedMap<NK,NV>ImmutableCharObjectEmptyMap. toSortedMapBy(Function<? super NK,KK> sortBy, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<KK extends java.lang.Comparable<? super KK>,NK,NV>
MutableSortedMap<NK,NV>ImmutableCharObjectSingletonMap. toSortedMapBy(Function<? super NK,KK> sortBy, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<KK extends java.lang.Comparable<? super KK>,NK,NV>
MutableSortedMap<NK,NV>ImmutableDoubleObjectEmptyMap. toSortedMapBy(Function<? super NK,KK> sortBy, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<KK extends java.lang.Comparable<? super KK>,NK,NV>
MutableSortedMap<NK,NV>ImmutableDoubleObjectSingletonMap. toSortedMapBy(Function<? super NK,KK> sortBy, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<KK extends java.lang.Comparable<? super KK>,NK,NV>
MutableSortedMap<NK,NV>ImmutableFloatObjectEmptyMap. toSortedMapBy(Function<? super NK,KK> sortBy, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<KK extends java.lang.Comparable<? super KK>,NK,NV>
MutableSortedMap<NK,NV>ImmutableFloatObjectSingletonMap. toSortedMapBy(Function<? super NK,KK> sortBy, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<KK extends java.lang.Comparable<? super KK>,NK,NV>
MutableSortedMap<NK,NV>ImmutableIntObjectEmptyMap. toSortedMapBy(Function<? super NK,KK> sortBy, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<KK extends java.lang.Comparable<? super KK>,NK,NV>
MutableSortedMap<NK,NV>ImmutableIntObjectSingletonMap. toSortedMapBy(Function<? super NK,KK> sortBy, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<KK extends java.lang.Comparable<? super KK>,NK,NV>
MutableSortedMap<NK,NV>ImmutableLongObjectEmptyMap. toSortedMapBy(Function<? super NK,KK> sortBy, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<KK extends java.lang.Comparable<? super KK>,NK,NV>
MutableSortedMap<NK,NV>ImmutableLongObjectSingletonMap. toSortedMapBy(Function<? super NK,KK> sortBy, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<KK extends java.lang.Comparable<? super KK>,NK,NV>
MutableSortedMap<NK,NV>ImmutableShortObjectEmptyMap. toSortedMapBy(Function<? super NK,KK> sortBy, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<KK extends java.lang.Comparable<? super KK>,NK,NV>
MutableSortedMap<NK,NV>ImmutableShortObjectSingletonMap. toSortedMapBy(Function<? super NK,KK> sortBy, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
-
Uses of MutableSortedMap in org.eclipse.collections.impl.map.mutable
Methods in org.eclipse.collections.impl.map.mutable that return MutableSortedMap Modifier and Type Method Description <NK,NV>
MutableSortedMap<NK,NV>UnmodifiableMutableMap. toSortedMap(java.util.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)
-
Uses of MutableSortedMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableSortedMap Modifier and Type Method Description <NK,NV>
MutableSortedMap<NK,NV>ByteObjectHashMap. toSortedMap(java.util.Comparator<? super NK> comparator, 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>CharObjectHashMap. toSortedMap(java.util.Comparator<? super NK> comparator, 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>DoubleObjectHashMap. toSortedMap(java.util.Comparator<? super NK> comparator, 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>FloatObjectHashMap. toSortedMap(java.util.Comparator<? super NK> comparator, 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>IntObjectHashMap. toSortedMap(java.util.Comparator<? super NK> comparator, 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>LongObjectHashMap. toSortedMap(java.util.Comparator<? super NK> comparator, 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)
<NK,NV>
MutableSortedMap<NK,NV>ShortObjectHashMap. toSortedMap(java.util.Comparator<? super NK> comparator, 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>SynchronizedByteObjectMap. toSortedMap(java.util.Comparator<? super NK> comparator, 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>SynchronizedCharObjectMap. toSortedMap(java.util.Comparator<? super NK> comparator, 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>SynchronizedDoubleObjectMap. toSortedMap(java.util.Comparator<? super NK> comparator, 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>SynchronizedFloatObjectMap. toSortedMap(java.util.Comparator<? super NK> comparator, 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>SynchronizedIntObjectMap. toSortedMap(java.util.Comparator<? super NK> comparator, 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>SynchronizedLongObjectMap. toSortedMap(java.util.Comparator<? super NK> comparator, 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>SynchronizedShortObjectMap. toSortedMap(java.util.Comparator<? super NK> comparator, 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>UnmodifiableByteObjectMap. toSortedMap(java.util.Comparator<? super NK> comparator, 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(java.util.Comparator<? super NK> comparator, 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>UnmodifiableDoubleObjectMap. toSortedMap(java.util.Comparator<? super NK> comparator, 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>UnmodifiableFloatObjectMap. toSortedMap(java.util.Comparator<? super NK> comparator, 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>UnmodifiableIntObjectMap. toSortedMap(java.util.Comparator<? super NK> comparator, 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>UnmodifiableLongObjectMap. toSortedMap(java.util.Comparator<? super NK> comparator, 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>UnmodifiableShortObjectMap. toSortedMap(java.util.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)
<KK extends java.lang.Comparable<? super KK>,NK,NV>
MutableSortedMap<NK,NV>SynchronizedByteObjectMap. toSortedMapBy(Function<? super NK,KK> sortBy, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<KK extends java.lang.Comparable<? super KK>,NK,NV>
MutableSortedMap<NK,NV>SynchronizedCharObjectMap. toSortedMapBy(Function<? super NK,KK> sortBy, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<KK extends java.lang.Comparable<? super KK>,NK,NV>
MutableSortedMap<NK,NV>SynchronizedDoubleObjectMap. toSortedMapBy(Function<? super NK,KK> sortBy, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<KK extends java.lang.Comparable<? super KK>,NK,NV>
MutableSortedMap<NK,NV>SynchronizedFloatObjectMap. toSortedMapBy(Function<? super NK,KK> sortBy, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<KK extends java.lang.Comparable<? super KK>,NK,NV>
MutableSortedMap<NK,NV>SynchronizedIntObjectMap. toSortedMapBy(Function<? super NK,KK> sortBy, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<KK extends java.lang.Comparable<? super KK>,NK,NV>
MutableSortedMap<NK,NV>SynchronizedLongObjectMap. toSortedMapBy(Function<? super NK,KK> sortBy, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<KK extends java.lang.Comparable<? super KK>,NK,NV>
MutableSortedMap<NK,NV>SynchronizedShortObjectMap. toSortedMapBy(Function<? super NK,KK> sortBy, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<KK extends java.lang.Comparable<? super KK>,NK,NV>
MutableSortedMap<NK,NV>UnmodifiableByteObjectMap. toSortedMapBy(Function<? super NK,KK> sortBy, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<KK extends java.lang.Comparable<? super KK>,NK,NV>
MutableSortedMap<NK,NV>UnmodifiableCharObjectMap. toSortedMapBy(Function<? super NK,KK> sortBy, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<KK extends java.lang.Comparable<? super KK>,NK,NV>
MutableSortedMap<NK,NV>UnmodifiableDoubleObjectMap. toSortedMapBy(Function<? super NK,KK> sortBy, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<KK extends java.lang.Comparable<? super KK>,NK,NV>
MutableSortedMap<NK,NV>UnmodifiableFloatObjectMap. toSortedMapBy(Function<? super NK,KK> sortBy, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<KK extends java.lang.Comparable<? super KK>,NK,NV>
MutableSortedMap<NK,NV>UnmodifiableIntObjectMap. toSortedMapBy(Function<? super NK,KK> sortBy, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<KK extends java.lang.Comparable<? super KK>,NK,NV>
MutableSortedMap<NK,NV>UnmodifiableLongObjectMap. toSortedMapBy(Function<? super NK,KK> sortBy, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<KK extends java.lang.Comparable<? super KK>,NK,NV>
MutableSortedMap<NK,NV>UnmodifiableShortObjectMap. toSortedMapBy(Function<? super NK,KK> sortBy, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
-
Uses of MutableSortedMap in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable that return MutableSortedMap Modifier and Type Method Description <NK,NV>
MutableSortedMap<NK,NV>UnmodifiableMutableOrderedMap. toSortedMap(java.util.Comparator<? super NK> comparator, Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
<NK,NV>
MutableSortedMap<NK,NV>UnmodifiableMutableOrderedMap. toSortedMap(Function<? super V,? extends NK> keyFunction, Function<? super V,? extends NV> valueFunction)
-
Uses of MutableSortedMap in org.eclipse.collections.impl.map.sorted.immutable
Methods in org.eclipse.collections.impl.map.sorted.immutable that return MutableSortedMap Modifier and Type Method Description MutableSortedMap<K,V>
AbstractImmutableSortedMap. toSortedMap()
-
Uses of MutableSortedMap in org.eclipse.collections.impl.map.sorted.mutable
Classes in org.eclipse.collections.impl.map.sorted.mutable that implement MutableSortedMap Modifier and Type Class 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.Methods in org.eclipse.collections.impl.map.sorted.mutable that return MutableSortedMap Modifier and Type Method Description static <K,V>
MutableSortedMap<K,V>SortedMapAdapter. adapt(java.util.SortedMap<K,V> map)
MutableSortedMap<K,V>
AbstractMutableSortedMap. asSynchronized()
MutableSortedMap<K,V>
SynchronizedSortedMap. asSynchronized()
MutableSortedMap<K,V>
UnmodifiableTreeMap. asSynchronized()
MutableSortedMap<K,V>
AbstractMutableSortedMap. asUnmodifiable()
MutableSortedMap<K,V>
SynchronizedSortedMap. asUnmodifiable()
MutableSortedMap<K,V>
UnmodifiableTreeMap. asUnmodifiable()
abstract MutableSortedMap<K,V>
AbstractMutableSortedMap. clone()
MutableSortedMap<K,V>
SortedMapAdapter. clone()
MutableSortedMap<K,V>
SynchronizedSortedMap. clone()
MutableSortedMap<K,V>
UnmodifiableTreeMap. clone()
<E> MutableSortedMap<K,V>
AbstractMutableSortedMap. collectKeysAndValues(java.lang.Iterable<E> iterable, Function<? super E,? extends K> keyFunction, Function<? super E,? extends V> valueFunction)
<E> MutableSortedMap<K,V>
SynchronizedSortedMap. collectKeysAndValues(java.lang.Iterable<E> iterable, Function<? super E,? extends K> keyFunction, Function<? super E,? extends V> function)
<E> MutableSortedMap<K,V>
UnmodifiableTreeMap. collectKeysAndValues(java.lang.Iterable<E> iterable, Function<? super E,? extends K> keyFunction, Function<? super E,? extends V> valueFunction)
<R> MutableSortedMap<K,R>
AbstractMutableSortedMap. collectValues(Function2<? super K,? super V,? extends R> function)
<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)
MutableSortedMap<K,V>
SortedMapAdapter. drop(int count)
MutableSortedMap<K,V>
SynchronizedSortedMap. drop(int count)
MutableSortedMap<K,V>
TreeSortedMap. drop(int count)
MutableSortedMap<K,V>
UnmodifiableTreeMap. drop(int count)
MutableSortedMap<K,V>
SortedMapAdapter. dropWhile(Predicate<? super V> predicate)
MutableSortedMap<K,V>
SynchronizedSortedMap. dropWhile(Predicate<? super V> predicate)
MutableSortedMap<K,V>
TreeSortedMap. dropWhile(Predicate<? super V> predicate)
MutableSortedMap<K,V>
UnmodifiableTreeMap. dropWhile(Predicate<? super V> predicate)
<K,V>
MutableSortedMap<K,V>MutableSortedMapFactoryImpl. empty()
protected MutableSortedMap<K,V>
SynchronizedSortedMap. getDelegate()
protected MutableSortedMap<K,V>
UnmodifiableTreeMap. getMutableSortedMap()
MutableSortedMap<K,V>
SortedMapAdapter. headMap(K toKey)
MutableSortedMap<K,V>
SynchronizedSortedMap. headMap(K toKey)
MutableSortedMap<K,V>
TreeSortedMap. headMap(K toKey)
MutableSortedMap<K,V>
UnmodifiableTreeMap. headMap(K toKey)
MutableSortedMap<K,V>
SortedMapAdapter. newEmpty()
Deprecated.useTreeSortedMap.newEmpty()
instead (inlineable)MutableSortedMap<K,V>
SynchronizedSortedMap. newEmpty()
MutableSortedMap<K,V>
TreeSortedMap. newEmpty()
MutableSortedMap<K,V>
UnmodifiableTreeMap. newEmpty()
<K,V>
MutableSortedMap<K,V>MutableSortedMapFactoryImpl. of()
<K,V>
MutableSortedMap<K,V>MutableSortedMapFactoryImpl. of(java.util.Comparator<? super K> comparator)
<K,V>
MutableSortedMap<K,V>MutableSortedMapFactoryImpl. of(java.util.Comparator<? super K> comparator, K key, V value)
<K,V>
MutableSortedMap<K,V>MutableSortedMapFactoryImpl. of(java.util.Comparator<? super K> comparator, K key1, V value1, K key2, V value2)
<K,V>
MutableSortedMap<K,V>MutableSortedMapFactoryImpl. of(java.util.Comparator<? super K> comparator, K key1, V value1, K key2, V value2, K key3, V value3)
<K,V>
MutableSortedMap<K,V>MutableSortedMapFactoryImpl. of(java.util.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(java.util.Map<? extends K,? extends V> map)
MutableSortedMap<K,V>
AbstractMutableSortedMap. reject(Predicate2<? super K,? super V> predicate)
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. select(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>
SortedMapAdapter. subMap(K fromKey, K toKey)
MutableSortedMap<K,V>
SynchronizedSortedMap. subMap(K fromKey, K toKey)
MutableSortedMap<K,V>
TreeSortedMap. subMap(K fromKey, K toKey)
MutableSortedMap<K,V>
UnmodifiableTreeMap. subMap(K fromKey, K toKey)
MutableSortedMap<K,V>
SortedMapAdapter. tailMap(K fromKey)
MutableSortedMap<K,V>
SynchronizedSortedMap. tailMap(K fromKey)
MutableSortedMap<K,V>
TreeSortedMap. tailMap(K fromKey)
MutableSortedMap<K,V>
UnmodifiableTreeMap. tailMap(K fromKey)
MutableSortedMap<K,V>
SortedMapAdapter. take(int count)
MutableSortedMap<K,V>
SynchronizedSortedMap. take(int count)
MutableSortedMap<K,V>
TreeSortedMap. take(int count)
MutableSortedMap<K,V>
UnmodifiableTreeMap. take(int count)
MutableSortedMap<K,V>
SortedMapAdapter. takeWhile(Predicate<? super V> predicate)
MutableSortedMap<K,V>
SynchronizedSortedMap. takeWhile(Predicate<? super V> predicate)
MutableSortedMap<K,V>
TreeSortedMap. takeWhile(Predicate<? super V> predicate)
MutableSortedMap<K,V>
UnmodifiableTreeMap. takeWhile(Predicate<? super V> predicate)
MutableSortedMap<K,V>
AbstractMutableSortedMap. tap(Procedure<? super V> procedure)
MutableSortedMap<K,V>
SynchronizedSortedMap. tap(Procedure<? super V> procedure)
MutableSortedMap<K,V>
UnmodifiableTreeMap. tap(Procedure<? super V> procedure)
MutableSortedMap<K,V>
SortedMapAdapter. toReversed()
MutableSortedMap<K,V>
SynchronizedSortedMap. toReversed()
MutableSortedMap<K,V>
TreeSortedMap. toReversed()
MutableSortedMap<K,V>
UnmodifiableTreeMap. toReversed()
<NK,NV>
MutableSortedMap<NK,NV>UnmodifiableTreeMap. toSortedMap(java.util.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(java.util.Comparator<? super K> comparator)
<K,V>
MutableSortedMap<K,V>MutableSortedMapFactoryImpl. with(java.util.Comparator<? super K> comparator, K key, V value)
<K,V>
MutableSortedMap<K,V>MutableSortedMapFactoryImpl. with(java.util.Comparator<? super K> comparator, K key1, V value1, K key2, V value2)
<K,V>
MutableSortedMap<K,V>MutableSortedMapFactoryImpl. with(java.util.Comparator<? super K> comparator, K key1, V value1, K key2, V value2, K key3, V value3)
<K,V>
MutableSortedMap<K,V>MutableSortedMapFactoryImpl. with(java.util.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>
SortedMapAdapter. with(Pair<K,V>... pairs)
MutableSortedMap<K,V>
SynchronizedSortedMap. with(Pair<K,V>... pairs)
Deprecated.in 6.0 UseSynchronizedSortedMap.withAllKeyValueArguments(Pair[])
instead.MutableSortedMap<K,V>
UnmodifiableTreeMap. with(Pair<K,V>... pairs)
MutableSortedMap<K,V>
AbstractMutableSortedMap. withAllKeyValueArguments(Pair<? extends K,? extends V>... keyValues)
MutableSortedMap<K,V>
SynchronizedSortedMap. withAllKeyValueArguments(Pair<? extends K,? extends V>... keyValuePairs)
MutableSortedMap<K,V>
UnmodifiableTreeMap. withAllKeyValueArguments(Pair<? extends K,? extends V>... keyValuePairs)
MutableSortedMap<K,V>
AbstractMutableSortedMap. withAllKeyValues(java.lang.Iterable<? extends Pair<? extends K,? extends V>> keyValues)
MutableSortedMap<K,V>
SynchronizedSortedMap. withAllKeyValues(java.lang.Iterable<? extends Pair<? extends K,? extends V>> keyValues)
MutableSortedMap<K,V>
UnmodifiableTreeMap. withAllKeyValues(java.lang.Iterable<? extends Pair<? extends K,? extends V>> keyValues)
MutableSortedMap<K,V>
AbstractMutableSortedMap. withKeyValue(K key, V value)
MutableSortedMap<K,V>
SynchronizedSortedMap. withKeyValue(K key, V value)
MutableSortedMap<K,V>
UnmodifiableTreeMap. withKeyValue(K key, V value)
MutableSortedMap<K,V>
SynchronizedSortedMap. withMap(java.util.Map<? extends K,? extends V> map)
MutableSortedMap<K,V>
UnmodifiableTreeMap. withMap(java.util.Map<? extends K,? extends V> map)
MutableSortedMap<K,V>
SynchronizedSortedMap. withMapIterable(MapIterable<? extends K,? extends V> mapIterable)
MutableSortedMap<K,V>
UnmodifiableTreeMap. withMapIterable(MapIterable<? extends K,? extends V> mapIterable)
MutableSortedMap<K,V>
AbstractMutableSortedMap. withoutAllKeys(java.lang.Iterable<? extends K> keys)
MutableSortedMap<K,V>
SynchronizedSortedMap. withoutAllKeys(java.lang.Iterable<? extends K> keys)
MutableSortedMap<K,V>
UnmodifiableTreeMap. withoutAllKeys(java.lang.Iterable<? extends K> keys)
MutableSortedMap<K,V>
AbstractMutableSortedMap. withoutKey(K key)
MutableSortedMap<K,V>
SynchronizedSortedMap. withoutKey(K key)
MutableSortedMap<K,V>
UnmodifiableTreeMap. withoutKey(K key)
<K,V>
MutableSortedMap<K,V>MutableSortedMapFactoryImpl. withSortedMap(java.util.Map<? extends K,? extends V> map)
Constructors in org.eclipse.collections.impl.map.sorted.mutable with parameters of type MutableSortedMap Constructor Description SynchronizedSortedMap(MutableSortedMap<K,V> newMap)
SynchronizedSortedMap(MutableSortedMap<K,V> newMap, java.lang.Object lock)
UnmodifiableTreeMap(MutableSortedMap<K,V> map)
-
Uses of MutableSortedMap in org.eclipse.collections.impl.stack.immutable
Methods in org.eclipse.collections.impl.stack.immutable that return MutableSortedMap Modifier and Type Method Description <NK,NV>
MutableSortedMap<NK,NV>ImmutableArrayStack. toSortedMap(java.util.Comparator<? super NK> comparator, Function<? super T,? extends NK> keyFunction, Function<? super T,? extends NV> valueFunction)
Deprecated.<NK,NV>
MutableSortedMap<NK,NV>ImmutableArrayStack. toSortedMap(Function<? super T,? extends NK> keyFunction, Function<? super T,? extends NV> valueFunction)
Deprecated.<KK extends java.lang.Comparable<? super KK>,NK,NV>
MutableSortedMap<NK,NV>ImmutableArrayStack. toSortedMapBy(Function<? super NK,KK> sortBy, Function<? super T,? extends NK> keyFunction, Function<? super T,? extends NV> valueFunction)
Deprecated. -
Uses of MutableSortedMap in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable that return MutableSortedMap Modifier and Type Method Description <NK,NV>
MutableSortedMap<NK,NV>ArrayStack. toSortedMap(java.util.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>SynchronizedStack. toSortedMap(java.util.Comparator<? super NK> comparator, 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)
<NK,NV>
MutableSortedMap<NK,NV>UnmodifiableStack. toSortedMap(java.util.Comparator<? super NK> comparator, 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)
<KK extends java.lang.Comparable<? super KK>,NK,NV>
MutableSortedMap<NK,NV>ArrayStack. toSortedMapBy(Function<? super NK,KK> sortBy, Function<? super T,? extends NK> keyFunction, Function<? super T,? extends NV> valueFunction)
-