ConcurrentNavigableMap
public
interface
ConcurrentNavigableMap
implements
ConcurrentMap<K, V>,
NavigableMap<K, V>
| java.util.concurrent.ConcurrentNavigableMap<K, V> |
A ConcurrentMap supporting NavigableMap operations,
and recursively so for its navigable sub-maps.
This interface is a member of the Java Collections Framework.
Summary
Public methods | |
|---|---|
abstract
NavigableSet<K>
|
descendingKeySet()
Returns a reverse order |
abstract
ConcurrentNavigableMap<K, V>
|
descendingMap()
Returns a reverse order view of the mappings contained in this map. |
abstract
ConcurrentNavigableMap<K, V>
|
headMap(K toKey)
Returns a view of the portion of this map whose keys are
strictly less than Equivalent to |
abstract
ConcurrentNavigableMap<K, V>
|
headMap(K toKey, boolean inclusive)
Returns a view of the portion of this map whose keys are less than (or
equal to, if |
abstract
NavigableSet<K>
|
keySet()
Returns a |
abstract
NavigableSet<K>
|
navigableKeySet()
Returns a |
abstract
ConcurrentNavigableMap<K, V>
|
subMap(K fromKey, K toKey)
Returns a view of the portion of this map whose keys range from
Equivalent to |
abstract
ConcurrentNavigableMap<K, V>
|
subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive)
Returns a view of the portion of this map whose keys range from
|
abstract
ConcurrentNavigableMap<K, V>
|
tailMap(K fromKey, boolean inclusive)
Returns a view of the portion of this map whose keys are greater than (or
equal to, if |
abstract
ConcurrentNavigableMap<K, V>
|
tailMap(K fromKey)
Returns a view of the portion of this map whose keys are
greater than or equal to Equivalent to |
Inherited methods | |
|---|---|