Uses of Interface
org.eclipse.collections.api.map.sorted.ImmutableSortedMap
-
Packages that use ImmutableSortedMap Package Description 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.collector org.eclipse.collections.impl.factory This package contains static utilities for creating mutable and immutable collection factories.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. -
-
Uses of ImmutableSortedMap in org.eclipse.collections.api.factory.map.sorted
Methods in org.eclipse.collections.api.factory.map.sorted that return ImmutableSortedMap Modifier and Type Method Description <K,V>
ImmutableSortedMap<K,V>ImmutableSortedMapFactory. empty()
<K,V>
ImmutableSortedMap<K,V>ImmutableSortedMapFactory. of()
Same asImmutableSortedMapFactory.empty()
.<K,V>
ImmutableSortedMap<K,V>ImmutableSortedMapFactory. of(java.util.Comparator<? super K> comparator)
<K,V>
ImmutableSortedMap<K,V>ImmutableSortedMapFactory. of(java.util.Comparator<? super K> comparator, K key, V value)
<K,V>
ImmutableSortedMap<K,V>ImmutableSortedMapFactory. of(java.util.Comparator<? super K> comparator, K key1, V value1, K key2, V value2)
<K,V>
ImmutableSortedMap<K,V>ImmutableSortedMapFactory. of(java.util.Comparator<? super K> comparator, K key1, V value1, K key2, V value2, K key3, V value3)
<K,V>
ImmutableSortedMap<K,V>ImmutableSortedMapFactory. 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>
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(java.util.SortedMap<K,V> map)
<K,V>
ImmutableSortedMap<K,V>ImmutableSortedMapFactory. with()
Same asImmutableSortedMapFactory.empty()
.<K,V>
ImmutableSortedMap<K,V>ImmutableSortedMapFactory. with(java.util.Comparator<? super K> comparator)
<K,V>
ImmutableSortedMap<K,V>ImmutableSortedMapFactory. with(java.util.Comparator<? super K> comparator, K key, V value)
<K,V>
ImmutableSortedMap<K,V>ImmutableSortedMapFactory. with(java.util.Comparator<? super K> comparator, K key1, V value1, K key2, V value2)
<K,V>
ImmutableSortedMap<K,V>ImmutableSortedMapFactory. with(java.util.Comparator<? super K> comparator, K key1, V value1, K key2, V value2, K key3, V value3)
<K,V>
ImmutableSortedMap<K,V>ImmutableSortedMapFactory. 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>
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(java.util.SortedMap<K,V> map)
-
Uses of ImmutableSortedMap in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return ImmutableSortedMap Modifier and Type Method 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(java.lang.Iterable<? extends Pair<? extends K,? extends V>> keyValues)
ImmutableSortedMap<K,V>
ImmutableSortedMap. newWithKeyValue(K key, V value)
ImmutableSortedMap<K,V>
ImmutableSortedMap. newWithMap(java.util.Map<? extends K,? extends V> map)
ImmutableSortedMap<K,V>
ImmutableSortedMap. newWithMapIterable(MapIterable<? extends K,? extends V> mapIterable)
ImmutableSortedMap<K,V>
ImmutableSortedMap. newWithoutAllKeys(java.lang.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. -
Uses of ImmutableSortedMap in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector that return types with arguments of type ImmutableSortedMap Modifier and Type Method Description static <T,K,V>
java.util.stream.Collector<T,?,ImmutableSortedMap<K,V>>Collectors2. toImmutableSortedMap(java.util.Comparator<? super K> comparator, Function<? super T,? extends K> keyFunction, Function<? super T,? extends V> valueFunction)
Returns the elements as a ImmutableSortedMap 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,?,ImmutableSortedMap<K,V>>Collectors2. toImmutableSortedMap(Function<? super T,? extends K> keyFunction, Function<? super T,? extends V> valueFunction)
Returns the elements as a ImmutableSortedMap 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,?,ImmutableSortedMap<K,V>>Collectors2. toImmutableSortedMapBy(Function<? super K,KK> sortBy, Function<? super T,? extends K> keyFunction, Function<? super T,? extends V> valueFunction)
Returns the elements as a ImmutableSortedMap that has been sorted using the specified comparator. -
Uses of ImmutableSortedMap in org.eclipse.collections.impl.factory
Methods in org.eclipse.collections.impl.factory that return ImmutableSortedMap Modifier and Type Method Description static <K,V>
ImmutableSortedMap<K,V>Iterables. iSortedMap()
static <K,V>
ImmutableSortedMap<K,V>Iterables. iSortedMap(java.util.Comparator<? super K> comparator)
static <K,V>
ImmutableSortedMap<K,V>Iterables. iSortedMap(java.util.Comparator<? super K> comparator, K key, V value)
static <K,V>
ImmutableSortedMap<K,V>Iterables. iSortedMap(java.util.Comparator<? super K> comparator, K key1, V value1, K key2, V value2)
static <K,V>
ImmutableSortedMap<K,V>Iterables. iSortedMap(java.util.Comparator<? super K> comparator, K key1, V value1, K key2, V value2, K key3, V value3)
static <K,V>
ImmutableSortedMap<K,V>Iterables. iSortedMap(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>
ImmutableSortedMap<K,V>Iterables. iSortedMap(K key, V value)
static <K,V>
ImmutableSortedMap<K,V>Iterables. iSortedMap(K key1, V value1, K key2, V value2)
static <K,V>
ImmutableSortedMap<K,V>Iterables. iSortedMap(K key1, V value1, K key2, V value2, K key3, V value3)
static <K,V>
ImmutableSortedMap<K,V>Iterables. iSortedMap(K key1, V value1, K key2, V value2, K key3, V value3, K key4, V value4)
-
Uses of ImmutableSortedMap in org.eclipse.collections.impl.map.sorted.immutable
Classes in org.eclipse.collections.impl.map.sorted.immutable that implement ImmutableSortedMap Modifier and Type Class Description class
AbstractImmutableSortedMap<K,V>
(package private) class
ImmutableEmptySortedMap<K,V>
This is a zero elementImmutableSortedMap
which is created by calling SortedMaps.immutable.empty().class
ImmutableTreeMap<K,V>
Fields in org.eclipse.collections.impl.map.sorted.immutable declared as ImmutableSortedMap Modifier and Type Field Description (package private) static ImmutableSortedMap<?,?>
ImmutableEmptySortedMap. INSTANCE
private ImmutableSortedMap<K,V>
ImmutableSortedMapSerializationProxy. map
Methods in org.eclipse.collections.impl.map.sorted.immutable that return ImmutableSortedMap Modifier and Type Method Description <R> ImmutableSortedMap<K,R>
AbstractImmutableSortedMap. collectValues(Function2<? super K,? super V,? extends R> function)
<R> ImmutableSortedMap<K,R>
ImmutableEmptySortedMap. collectValues(Function2<? super K,? super V,? extends R> function)
ImmutableSortedMap<K,V>
ImmutableEmptySortedMap. drop(int count)
ImmutableSortedMap<K,V>
ImmutableTreeMap. drop(int count)
ImmutableSortedMap<K,V>
AbstractImmutableSortedMap. dropWhile(Predicate<? super V> predicate)
<K,V>
ImmutableSortedMap<K,V>ImmutableSortedMapFactoryImpl. empty()
static <K,V>
ImmutableSortedMap<K,V>ImmutableTreeMap. newMap(java.util.SortedMap<K,V> sortedMap)
ImmutableSortedMap<K,V>
AbstractImmutableSortedMap. newWithAllKeyValueArguments(Pair<? extends K,? extends V>... keyValuePairs)
ImmutableSortedMap<K,V>
AbstractImmutableSortedMap. newWithAllKeyValues(java.lang.Iterable<? extends Pair<? extends K,? extends V>> keyValues)
ImmutableSortedMap<K,V>
AbstractImmutableSortedMap. newWithKeyValue(K key, V value)
ImmutableSortedMap<K,V>
AbstractImmutableSortedMap. newWithMap(java.util.Map<? extends K,? extends V> map)
ImmutableSortedMap<K,V>
AbstractImmutableSortedMap. newWithMapIterable(MapIterable<? extends K,? extends V> mapIterable)
ImmutableSortedMap<K,V>
AbstractImmutableSortedMap. newWithoutAllKeys(java.lang.Iterable<? extends K> keys)
ImmutableSortedMap<K,V>
AbstractImmutableSortedMap. newWithoutKey(K key)
<K,V>
ImmutableSortedMap<K,V>ImmutableSortedMapFactoryImpl. of()
<K,V>
ImmutableSortedMap<K,V>ImmutableSortedMapFactoryImpl. of(java.util.Comparator<? super K> comparator)
<K,V>
ImmutableSortedMap<K,V>ImmutableSortedMapFactoryImpl. of(java.util.Comparator<? super K> comparator, K key, V value)
<K,V>
ImmutableSortedMap<K,V>ImmutableSortedMapFactoryImpl. of(java.util.Comparator<? super K> comparator, K key1, V value1, K key2, V value2)
<K,V>
ImmutableSortedMap<K,V>ImmutableSortedMapFactoryImpl. of(java.util.Comparator<? super K> comparator, K key1, V value1, K key2, V value2, K key3, V value3)
<K,V>
ImmutableSortedMap<K,V>ImmutableSortedMapFactoryImpl. 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>
ImmutableSortedMap<K,V>ImmutableSortedMapFactoryImpl. of(K key, V value)
<K,V>
ImmutableSortedMap<K,V>ImmutableSortedMapFactoryImpl. of(K key1, V value1, K key2, V value2)
<K,V>
ImmutableSortedMap<K,V>ImmutableSortedMapFactoryImpl. of(K key1, V value1, K key2, V value2, K key3, V value3)
<K,V>
ImmutableSortedMap<K,V>ImmutableSortedMapFactoryImpl. of(K key1, V value1, K key2, V value2, K key3, V value3, K key4, V value4)
<K,V>
ImmutableSortedMap<K,V>ImmutableSortedMapFactoryImpl. ofSortedMap(java.util.SortedMap<K,V> map)
ImmutableSortedMap<K,V>
AbstractImmutableSortedMap. reject(Predicate2<? super K,? super V> predicate)
ImmutableSortedMap<K,V>
ImmutableEmptySortedMap. reject(Predicate2<? super K,? super V> predicate)
ImmutableSortedMap<K,V>
AbstractImmutableSortedMap. select(Predicate2<? super K,? super V> predicate)
ImmutableSortedMap<K,V>
ImmutableEmptySortedMap. select(Predicate2<? super K,? super V> predicate)
ImmutableSortedMap<K,V>
ImmutableEmptySortedMap. take(int count)
ImmutableSortedMap<K,V>
ImmutableTreeMap. take(int count)
ImmutableSortedMap<K,V>
AbstractImmutableSortedMap. takeWhile(Predicate<? super V> predicate)
ImmutableSortedMap<K,V>
AbstractImmutableSortedMap. tap(Procedure<? super V> procedure)
ImmutableSortedMap<K,V>
ImmutableEmptySortedMap. tap(Procedure<? super V> procedure)
ImmutableSortedMap<K,V>
AbstractImmutableSortedMap. toImmutable()
ImmutableSortedMap<K,V>
AbstractImmutableSortedMap. toReversed()
<K,V>
ImmutableSortedMap<K,V>ImmutableSortedMapFactoryImpl. with()
<K,V>
ImmutableSortedMap<K,V>ImmutableSortedMapFactoryImpl. with(java.util.Comparator<? super K> comparator)
<K,V>
ImmutableSortedMap<K,V>ImmutableSortedMapFactoryImpl. with(java.util.Comparator<? super K> comparator, K key, V value)
<K,V>
ImmutableSortedMap<K,V>ImmutableSortedMapFactoryImpl. with(java.util.Comparator<? super K> comparator, K key1, V value1, K key2, V value2)
<K,V>
ImmutableSortedMap<K,V>ImmutableSortedMapFactoryImpl. with(java.util.Comparator<? super K> comparator, K key1, V value1, K key2, V value2, K key3, V value3)
<K,V>
ImmutableSortedMap<K,V>ImmutableSortedMapFactoryImpl. 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>
ImmutableSortedMap<K,V>ImmutableSortedMapFactoryImpl. with(K key, V value)
<K,V>
ImmutableSortedMap<K,V>ImmutableSortedMapFactoryImpl. with(K key1, V value1, K key2, V value2)
<K,V>
ImmutableSortedMap<K,V>ImmutableSortedMapFactoryImpl. with(K key1, V value1, K key2, V value2, K key3, V value3)
<K,V>
ImmutableSortedMap<K,V>ImmutableSortedMapFactoryImpl. with(K key1, V value1, K key2, V value2, K key3, V value3, K key4, V value4)
<K,V>
ImmutableSortedMap<K,V>ImmutableSortedMapFactoryImpl. withSortedMap(java.util.SortedMap<K,V> map)
Constructors in org.eclipse.collections.impl.map.sorted.immutable with parameters of type ImmutableSortedMap Constructor Description ImmutableSortedMapSerializationProxy(ImmutableSortedMap<K,V> map)
-
Uses of ImmutableSortedMap in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable that return ImmutableSortedMap Modifier and Type Method Description ImmutableSortedMap<K,V>
AbstractMutableSortedMap. toImmutable()
ImmutableSortedMap<K,V>
SynchronizedSortedMap. toImmutable()
ImmutableSortedMap<K,V>
UnmodifiableTreeMap. toImmutable()
-