private static <K extends java.lang.Comparable<? super K>,V> SortedMap<K,V> |
SortedMaps.construct(Pair<K,V>... pairs) |
|
private static <K,V> SortedMap<K,V> |
SortedMaps.construct(java.util.Comparator<? super K> comparator,
Pair<K,V>... pairs) |
|
static <K extends java.lang.Comparable<? super K>,V> @NotNull SortedMap<K,V> |
SortedMaps.copyOf(Pair<K,V>[] pairs) |
|
static <K extends java.lang.Comparable<? super K>,V> @NotNull SortedMap<K,V> |
SortedMaps.copyOf(java.lang.Iterable<Pair<K,V>> iterable) |
|
static <K,V> @NotNull SortedMap<K,V> |
SortedMaps.copyOf(java.util.Comparator<? super K> comparator,
Pair<K,V>[] pairs) |
|
static <K,V> @NotNull SortedMap<K,V> |
SortedMaps.copyOf(java.util.Comparator<? super K> comparator,
java.lang.Iterable<Pair<K,V>> iterable) |
|
static <K,V> @NotNull SortedMap<K,V> |
SortedMaps.copyOf(java.util.Comparator<? super K> comparator,
java.util.Iterator<Pair<K,V>> iterator) |
|
static <K extends java.lang.Comparable<? super K>,V> @NotNull SortedMap<K,V> |
SortedMaps.copyOf(java.util.Iterator<Pair<K,V>> iterator) |
|
static <K extends java.lang.Comparable<? super K>,V> @NotNull SortedMap<K,V> |
SortedMaps.copyOfTraversable(Traversable<Pair<K,V>> traversable) |
|
static <K,V> @NotNull SortedMap<K,V> |
SortedMaps.copyOfTraversable(java.util.Comparator<? super K> comparator,
Traversable<Pair<K,V>> traversable) |
|
@NotNull SortedMap<K,V> |
SortedMap.drop(int number) |
Returns a map containing all elements in this map, excluding the first number of elements.
|
@NotNull SortedMap<K,V> |
TreeMap.drop(int number) |
|
@NotNull SortedMap<K,V> |
SortedMap.from(K key,
boolean inclusive) |
Returns the bottom of the map starting from the key specified.
|
@NotNull SortedMap<K,V> |
TreeMap.from(K key,
boolean inclusive) |
|
static <K extends java.lang.Comparable<? super K>,V> @NotNull SortedMap<K,V> |
SortedMaps.of() |
|
static <K,V> @NotNull SortedMap<K,V> |
SortedMaps.of(java.util.Comparator<? super K> comparator) |
|
static <K,V> @NotNull SortedMap<K,V> |
SortedMaps.of(java.util.Comparator<? super K> comparator,
K k,
V v) |
|
static <K,V> @NotNull SortedMap<K,V> |
SortedMaps.of(java.util.Comparator<? super K> comparator,
K k1,
V v1,
K k2,
V v2) |
|
static <K,V> @NotNull SortedMap<K,V> |
SortedMaps.of(java.util.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(java.util.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(java.util.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 java.lang.Comparable<? super K>,V> @NotNull SortedMap<K,V> |
SortedMaps.of(K k,
V v) |
|
static <K extends java.lang.Comparable<? super K>,V> @NotNull SortedMap<K,V> |
SortedMaps.of(K k1,
V v1,
K k2,
V v2) |
|
static <K extends java.lang.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 java.lang.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 java.lang.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) |
|
@NotNull SortedMap<K,V> |
SortedMap.put(K key,
V value) |
|
@NotNull SortedMap<K,V> |
SortedMap.range(K from,
boolean fromInclusive,
K to,
boolean toInclusive) |
Returns a subset of the map between the from and to keys specified.
|
@NotNull SortedMap<K,V> |
TreeMap.range(K from,
boolean fromInclusive,
K to,
boolean toInclusive) |
|
@NotNull SortedMap<K,V> |
SortedMap.remove(K key) |
|
@NotNull SortedMap<K,V> |
SortedMap.take(int number) |
Returns a list containing the first number of elements from this list.
|
@NotNull SortedMap<K,V> |
TreeMap.take(int number) |
|
@NotNull SortedMap<K,V> |
SortedMap.to(K key,
boolean inclusive) |
Returns the top of the map up until the key specified.
|
@NotNull SortedMap<K,V> |
TreeMap.to(K key,
boolean inclusive) |
|