ImmutableNavigableMap<K,V> |
ImmutableNavigableMap.descendingMap() |
Returns a reverse order view of the keys contained in this immutable map.
|
ImmutableNavigableMap<K,V> |
ImmutableTreeMap.descendingMap() |
Returns a reverse order view of the keys contained in this immutable map.
|
ImmutableNavigableMap<K,V> |
ImmutableNavigableMap.headMap(K toKey,
boolean inclusive) |
Returns a view of the portion of this immutable map whose keys are less than (or equal to, if inclusive is true)
toKey .
|
ImmutableNavigableMap<K,V> |
ImmutableTreeMap.headMap(K toKey,
boolean inclusive) |
Returns a view of the portion of this immutable map whose keys are less than (or equal to, if inclusive is true)
toKey .
|
ImmutableNavigableMap<K,V> |
ImmutableNavigableMap.subMap(K fromKey,
boolean fromInclusive,
K toKey,
boolean toInclusive) |
Returns a view of the portion of this immutable map whose keys range from fromKey to toKey .
|
ImmutableNavigableMap<K,V> |
ImmutableTreeMap.subMap(K fromKey,
boolean fromInclusive,
K toKey,
boolean toInclusive) |
Returns a view of the portion of this immutable map whose keys range from fromKey to toKey .
|
ImmutableNavigableMap<K,V> |
ImmutableNavigableMap.tailMap(K fromKey,
boolean inclusive) |
Returns a view of the portion of this immutable map whose keys are greater than (or equal to, if inclusive is
true) fromKey .
|
ImmutableNavigableMap<K,V> |
ImmutableTreeMap.tailMap(K fromKey,
boolean inclusive) |
Returns a view of the portion of this immutable map whose keys are greater than (or equal to, if inclusive is
true) fromKey .
|