Java java.util.concurrent ConcurrentSkipListMap fields, constructors, methods, implement or subclass

Example usage for Java java.util.concurrent ConcurrentSkipListMap fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.util.concurrent ConcurrentSkipListMap.

The text is from its open source code.

Subclass

java.util.concurrent.ConcurrentSkipListMap has subclasses.
Click this link to see all its subclasses.

Field

KeySetkeySet
Lazily initialized key set
Valuesvalues
Lazily initialized values collection
EntrySetentrySet
Lazily initialized entry set

Constructor

ConcurrentSkipListMap()
Constructs a new, empty map, sorted according to the Comparable natural ordering of the keys.
ConcurrentSkipListMap(Comparator comparator)
Constructs a new, empty map, sorted according to the specified comparator.
ConcurrentSkipListMap(Map m)
Constructs a new map containing the same mappings as the given map, sorted according to the Comparable natural ordering of the keys.
ConcurrentSkipListMap(SortedMap m)
Constructs a new map containing the same mappings and using the same ordering as the specified sorted map.

Method

KceilingKey(K key)
Map.EntryfloorEntry(K key)
Returns a key-value mapping associated with the greatest key less than or equal to the given key, or null if there is no such key.
KfloorKey(K key)
Vget(Object key)
Returns the value to which the specified key is mapped, or null if this map contains no mapping for the key.
Map.EntrylowerEntry(K key)
Returns a key-value mapping associated with the greatest key strictly less than the given key, or null if there is no such key.
Vput(K key, V value)
Associates the specified value with the specified key in this map.
VputIfAbsent(K key, V value)
Vremove(Object key)
Removes the mapping for the specified key from this map if present.
ConcurrentNavigableMapsubMap(K fromKey, K toKey)
ConcurrentNavigableMaptailMap(K fromKey, boolean inclusive)