ImmutableSortedMap<K,V> |
ImmutableSortedMap.headMap(K toKey) |
Returns a view of the portion of this immutable map whose keys are strictly less than toKey .
|
ImmutableSortedMap<K,V> |
ImmutableTreeMap.headMap(K toKey) |
Returns a view of the portion of this immutable map whose keys are strictly less than toKey .
|
static <K,V> ImmutableSortedMap<K,V> |
ImmutableSortedMap.of() |
Return an empty ImmutableSortedMap, backed by a TreeMap.
|
static <K,V> ImmutableSortedMap<K,V> |
ImmutableSortedMap.of(K k1,
V v1) |
Return an ImmutableSortedMap with 1 entry, backed by a TreeMap.
|
static <K,V> ImmutableSortedMap<K,V> |
ImmutableSortedMap.of(K k1,
V v1,
K k2,
V v2) |
Return an ImmutableSortedMap with 2 entries, backed by a TreeMap.
|
static <K,V> ImmutableSortedMap<K,V> |
ImmutableSortedMap.of(K k1,
V v1,
K k2,
V v2,
K k3,
V v3) |
Return an ImmutableSortedMap with 3 entries, backed by a TreeMap.
|
static <K,V> ImmutableSortedMap<K,V> |
ImmutableSortedMap.of(K k1,
V v1,
K k2,
V v2,
K k3,
V v3,
K k4,
V v4) |
Return an ImmutableSortedMap with 4 entries, backed by a TreeMap.
|
static <K,V> ImmutableSortedMap<K,V> |
ImmutableSortedMap.of(K k1,
V v1,
K k2,
V v2,
K k3,
V v3,
K k4,
V v4,
K k5,
V v5) |
Return an ImmutableSortedMap with 5 entries, backed by a TreeMap.
|
static <K,V> ImmutableSortedMap<K,V> |
ImmutableSortedMap.of(K k1,
V v1,
K k2,
V v2,
K k3,
V v3,
K k4,
V v4,
K k5,
V v5,
K k6,
V v6) |
Return an ImmutableSortedMap with 6 entries, backed by a TreeMap.
|
static <K,V> ImmutableSortedMap<K,V> |
ImmutableSortedMap.of(K k1,
V v1,
K k2,
V v2,
K k3,
V v3,
K k4,
V v4,
K k5,
V v5,
K k6,
V v6,
K k7,
V v7) |
Return an ImmutableSortedMap with 7 entries, backed by a TreeMap.
|
static <K,V> ImmutableSortedMap<K,V> |
ImmutableSortedMap.of(K k1,
V v1,
K k2,
V v2,
K k3,
V v3,
K k4,
V v4,
K k5,
V v5,
K k6,
V v6,
K k7,
V v7,
K k8,
V v8) |
Return an ImmutableSortedMap with 8 entries, backed by a TreeMap.
|
ImmutableSortedMap<K,V> |
ImmutableSortedMap.subMap(K fromKey,
K toKey) |
Returns a view of the portion of this immutable map whose keys range from fromKey , inclusive, to
toKey , exclusive.
|
ImmutableSortedMap<K,V> |
ImmutableTreeMap.subMap(K fromKey,
K toKey) |
Returns a view of the portion of this immutable map whose keys range from fromKey , inclusive, to
toKey , exclusive.
|
ImmutableSortedMap<K,V> |
ImmutableSortedMap.tailMap(K fromKey) |
Returns a view of the portion of this immutable map whose keys are greater than or equal to fromKey .
|
ImmutableSortedMap<K,V> |
ImmutableTreeMap.tailMap(K fromKey) |
Returns a view of the portion of this immutable map whose keys are greater than or equal to fromKey .
|