Example usage for Java java.util.concurrent ConcurrentNavigableMap fields, constructors, methods, implement or subclass
The text is from its open source code.
boolean | containsKey(Object key) Returns true if this map contains a mapping for the specified key. |
NavigableSet | descendingKeySet() Returns a reverse order NavigableSet view of the keys contained in this map. |
ConcurrentNavigableMap | descendingMap() Returns a reverse order view of the mappings contained in this map. |
Set | entrySet() Returns a Set view of the mappings contained in this map. |
V | get(Object key) Returns the value to which the specified key is mapped, or null if this map contains no mapping for the key. |
ConcurrentNavigableMap | headMap(K toKey, boolean inclusive) |
ConcurrentNavigableMap | headMap(K toKey) |
boolean | isEmpty() Returns true if this map contains no key-value mappings. |
NavigableSet | keySet() Returns a NavigableSet view of the keys contained in this map. |
V | put(K key, V value) Associates the specified value with the specified key in this map (optional operation). |
void | putAll(Map extends K, ? extends V> m) Copies all of the mappings from the specified map to this map (optional operation). |
V | remove(Object key) Removes the mapping for a key from this map if it is present (optional operation). |
int | size() Returns the number of key-value mappings in this map. |
ConcurrentNavigableMap | subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) |
ConcurrentNavigableMap | tailMap(K fromKey, boolean inclusive) |
ConcurrentNavigableMap | tailMap(K fromKey) |
Collection | values() Returns a Collection view of the values contained in this map. |