Uses of Interface
java.util.NavigableMap
| Package | Description |
|---|---|
| java.util | |
| java.util.concurrent |
Utility classes commonly useful in concurrent programming.
|
-
Uses of NavigableMap in java.util
Classes in java.util that implement NavigableMap Modifier and Type Class Description classTreeMap<K,V>A map whose entries are sorted by their keys.Methods in java.util that return NavigableMap Modifier and Type Method Description NavigableMap<K,V>NavigableMap. descendingMap()Returns a reverse order view of the mappings contained in this map.NavigableMap<K,V>TreeMap. descendingMap()NavigableMap<K,V>NavigableMap. headMap(K toKey, boolean inclusive)Returns a view of the portion of this map whose keys are less than (or equal to, ifinclusiveis true)toKey.NavigableMap<K,V>TreeMap. headMap(K to, boolean inclusive)NavigableMap<K,V>NavigableMap. subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive)Returns a view of the portion of this map whose keys range fromfromKeytotoKey.NavigableMap<K,V>TreeMap. subMap(K from, boolean fromInclusive, K to, boolean toInclusive)NavigableMap<K,V>NavigableMap. tailMap(K fromKey, boolean inclusive)Returns a view of the portion of this map whose keys are greater than (or equal to, ifinclusiveis true)fromKey.NavigableMap<K,V>TreeMap. tailMap(K from, boolean inclusive) -
Uses of NavigableMap in java.util.concurrent
Subinterfaces of NavigableMap in java.util.concurrent Modifier and Type Interface Description interfaceConcurrentNavigableMap<K,V>AConcurrentMapsupportingNavigableMapoperations, and recursively so for its navigable sub-maps.Classes in java.util.concurrent that implement NavigableMap Modifier and Type Class Description classConcurrentSkipListMap<K,V>A scalable concurrentConcurrentNavigableMapimplementation.