Uses of Interface
org.djutils.immutablecollections.ImmutableNavigableMap
Package | Description |
---|---|
org.djutils.immutablecollections |
Contains a set of immutable collection interfaces and wrapper implementations.
|
-
Uses of ImmutableNavigableMap in org.djutils.immutablecollections
Classes in org.djutils.immutablecollections that implement ImmutableNavigableMap Modifier and Type Class Description class
ImmutableTreeMap<K,V>
An immutable wrapper for a TreeMap.Methods in org.djutils.immutablecollections that return ImmutableNavigableMap Modifier and Type Method Description 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, ifinclusive
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, ifinclusive
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 fromfromKey
totoKey
.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 fromfromKey
totoKey
.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, ifinclusive
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, ifinclusive
is true)fromKey
.