Uses of Interface
org.djutils.immutablecollections.ImmutableSortedMap
| Package | Description |
|---|---|
| org.djutils.immutablecollections |
Contains a set of immutable collection interfaces and wrapper implementations.
|
-
Uses of ImmutableSortedMap in org.djutils.immutablecollections
Subinterfaces of ImmutableSortedMap in org.djutils.immutablecollections Modifier and Type Interface Description interfaceImmutableNavigableMap<K,V>AImmutableSortedMapextended with navigation methods reporting closest matches for given search targets.Classes in org.djutils.immutablecollections that implement ImmutableSortedMap Modifier and Type Class Description classImmutableTreeMap<K,V>An immutable wrapper for a TreeMap.Methods in org.djutils.immutablecollections that return ImmutableSortedMap Modifier and Type Method Description ImmutableSortedMap<K,V>ImmutableSortedMap. headMap(K toKey)Returns a view of the portion of this immutable map whose keys are strictly less thantoKey.ImmutableSortedMap<K,V>ImmutableTreeMap. headMap(K toKey)Returns a view of the portion of this immutable map whose keys are strictly less thantoKey.ImmutableSortedMap<K,V>ImmutableSortedMap. subMap(K fromKey, K toKey)Returns a view of the portion of this immutable map whose keys range fromfromKey, inclusive, totoKey, exclusive.ImmutableSortedMap<K,V>ImmutableTreeMap. subMap(K fromKey, K toKey)Returns a view of the portion of this immutable map whose keys range fromfromKey, inclusive, totoKey, 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 tofromKey.ImmutableSortedMap<K,V>ImmutableTreeMap. tailMap(K fromKey)Returns a view of the portion of this immutable map whose keys are greater than or equal tofromKey.