Uses of Interface
java.util.NavigableMap
Package
Description
Support for time-zones and their rules.
Contains the collections framework, some internationalization support classes,
a service loader, properties, random number generation, string parsing
and scanning classes, base64 encoding and decoding, a bit array, and
several miscellaneous utility classes.
Utility classes commonly useful in concurrent programming.
-
Uses of NavigableMap in java.time.zone
Modifier and TypeMethodDescriptionstatic NavigableMap<String,ZoneRules>
ZoneRulesProvider.getVersions(String zoneId)
Gets the history of rules for the zone ID.protected abstract NavigableMap<String,ZoneRules>
ZoneRulesProvider.provideVersions(String zoneId)
SPI method to get the history of rules for the zone ID. -
Uses of NavigableMap in java.util
Modifier and TypeClassDescriptionclass
TreeMap<K,V>
A Red-Black tree basedNavigableMap
implementation.Modifier and TypeMethodDescriptionstatic <K, V> NavigableMap<K,V>
Collections.checkedNavigableMap(NavigableMap<K,V> m, Class<K> keyType, Class<V> valueType)
Returns a dynamically typesafe view of the specified navigable map.NavigableMap<K,V>
NavigableMap.descendingMap()
Returns a reverse order view of the mappings contained in this map.NavigableMap<K,V>
TreeMap.descendingMap()
static <K, V> NavigableMap<K,V>
Collections.emptyNavigableMap()
Returns an empty navigable map (immutable).NavigableMap<K,V>
Returns a view of the portion of this map whose keys are less than (or equal to, ifinclusive
is true)toKey
.NavigableMap<K,V>
NavigableMap<K,V>
Returns a view of the portion of this map whose keys range fromfromKey
totoKey
.NavigableMap<K,V>
static <K, V> NavigableMap<K,V>
Collections.synchronizedNavigableMap(NavigableMap<K,V> m)
Returns a synchronized (thread-safe) navigable map backed by the specified navigable map.NavigableMap<K,V>
Returns a view of the portion of this map whose keys are greater than (or equal to, ifinclusive
is true)fromKey
.NavigableMap<K,V>
static <K, V> NavigableMap<K,V>
Collections.unmodifiableNavigableMap(NavigableMap<K,? extends V> m)
Returns an unmodifiable view of the specified navigable map.Modifier and TypeMethodDescriptionstatic <K, V> NavigableMap<K,V>
Collections.checkedNavigableMap(NavigableMap<K,V> m, Class<K> keyType, Class<V> valueType)
Returns a dynamically typesafe view of the specified navigable map.static <K, V> NavigableMap<K,V>
Collections.synchronizedNavigableMap(NavigableMap<K,V> m)
Returns a synchronized (thread-safe) navigable map backed by the specified navigable map.static <K, V> NavigableMap<K,V>
Collections.unmodifiableNavigableMap(NavigableMap<K,? extends V> m)
Returns an unmodifiable view of the specified navigable map. -
Uses of NavigableMap in java.util.concurrent
Modifier and TypeInterfaceDescriptioninterface
ConcurrentNavigableMap<K,V>
AConcurrentMap
supportingNavigableMap
operations, and recursively so for its navigable sub-maps.Modifier and TypeClassDescriptionclass
ConcurrentSkipListMap<K,V>
A scalable concurrentConcurrentNavigableMap
implementation.