Uses of Interface
com.github.andrewoma.dexx.collection.SortedMap
Packages that use SortedMap
Package
Description
Dexx collections are a port of Scala's immutable, persistent collection classes to pure Java.
-
Uses of SortedMap in com.github.andrewoma.dexx.collection
Classes in com.github.andrewoma.dexx.collection that implement SortedMapMethods in com.github.andrewoma.dexx.collection that return SortedMapModifier and TypeMethodDescriptionprivate static <K extends Comparable<? super K>,
V>
SortedMap<K, V> private static <K,
V> SortedMap <K, V> SortedMaps.construct
(Comparator<? super K> comparator, Pair<K, V>... pairs) static <K extends Comparable<? super K>,
V>
@NotNull SortedMap<K, V> static <K extends Comparable<? super K>,
V>
@NotNull SortedMap<K, V> static <K,
V> @NotNull SortedMap <K, V> SortedMaps.copyOf
(Comparator<? super K> comparator, Pair<K, V>[] pairs) static <K,
V> @NotNull SortedMap <K, V> SortedMaps.copyOf
(Comparator<? super K> comparator, Iterable<Pair<K, V>> iterable) static <K,
V> @NotNull SortedMap <K, V> SortedMaps.copyOf
(Comparator<? super K> comparator, Iterator<Pair<K, V>> iterator) static <K extends Comparable<? super K>,
V>
@NotNull SortedMap<K, V> static <K extends Comparable<? super K>,
V>
@NotNull SortedMap<K, V> SortedMaps.copyOfTraversable
(Traversable<Pair<K, V>> traversable) static <K,
V> @NotNull SortedMap <K, V> SortedMaps.copyOfTraversable
(Comparator<? super K> comparator, Traversable<Pair<K, V>> traversable) SortedMap.drop
(int number) Returns a map containing all elements in this map, excluding the firstnumber
of elements.TreeMap.drop
(int number) Returns the bottom of the map starting from the key specified.static <K extends Comparable<? super K>,
V>
@NotNull SortedMap<K, V> SortedMaps.of()
static <K,
V> @NotNull SortedMap <K, V> SortedMaps.of
(Comparator<? super K> comparator) static <K,
V> @NotNull SortedMap <K, V> SortedMaps.of
(Comparator<? super K> comparator, K k, V v) static <K,
V> @NotNull SortedMap <K, V> SortedMaps.of
(Comparator<? super K> comparator, K k1, V v1, K k2, V v2) static <K,
V> @NotNull SortedMap <K, V> SortedMaps.of
(Comparator<? super K> comparator, K k1, V v1, K k2, V v2, K k3, V v3) static <K,
V> @NotNull SortedMap <K, V> SortedMaps.of
(Comparator<? super K> comparator, K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) static <K,
V> @NotNull SortedMap <K, V> SortedMaps.of
(Comparator<? super K> comparator, K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) static <K extends Comparable<? super K>,
V>
@NotNull SortedMap<K, V> SortedMaps.of
(K k, V v) static <K extends Comparable<? super K>,
V>
@NotNull SortedMap<K, V> SortedMaps.of
(K k1, V v1, K k2, V v2) static <K extends Comparable<? super K>,
V>
@NotNull SortedMap<K, V> SortedMaps.of
(K k1, V v1, K k2, V v2, K k3, V v3) static <K extends Comparable<? super K>,
V>
@NotNull SortedMap<K, V> SortedMaps.of
(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) static <K extends Comparable<? super K>,
V>
@NotNull SortedMap<K, V> SortedMaps.of
(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) Returns a subset of the map between thefrom
andto
keys specified.SortedMap.take
(int number) Returns a list containing the firstnumber
of elements from this list.TreeMap.take
(int number) Returns the top of the map up until the key specified.Methods in com.github.andrewoma.dexx.collection that return types with arguments of type SortedMapModifier and TypeMethodDescriptionstatic <K extends Comparable<? super K>,
V>
@NotNull Builder<Pair<K, V>, SortedMap<K, V>> SortedMaps.builder()
SortedMaps.builder
(Comparator<? super K> comparator) static <K extends Comparable<? super K>,
V>
@NotNull BuilderFactory<Pair<K, V>, SortedMap<K, V>> SortedMaps.factory()
static <K,
V> @NotNull BuilderFactory <Pair<K, V>, SortedMap<K, V>> SortedMaps.factory
(Comparator<? super K> comparator) -
Uses of SortedMap in com.github.andrewoma.dexx.collection.internal.adapter
Fields in com.github.andrewoma.dexx.collection.internal.adapter declared as SortedMapConstructors in com.github.andrewoma.dexx.collection.internal.adapter with parameters of type SortedMap -
Uses of SortedMap in com.github.andrewoma.dexx.collection.internal.base
Classes in com.github.andrewoma.dexx.collection.internal.base that implement SortedMapMethods in com.github.andrewoma.dexx.collection.internal.base that return SortedMap