| Package | Description |
|---|---|
| io.atomix.core.map |
Atomic map primitive.
|
| Modifier and Type | Method and Description |
|---|---|
AsyncAtomicNavigableMap<K,V> |
AtomicNavigableMap.async() |
AsyncAtomicNavigableMap<K,V> |
AsyncAtomicNavigableMap.descendingMap()
Returns a reverse order view of the mappings contained in this map.
|
AsyncAtomicNavigableMap<K,V> |
AsyncAtomicNavigableMap.headMap(K toKey,
boolean inclusive)
Returns a view of the portion of this map whose keys are less than (or
equal to, if
inclusive is true) toKey. |
AsyncAtomicNavigableMap<K,V> |
AsyncAtomicNavigableMap.subMap(K fromKey,
boolean fromInclusive,
K toKey,
boolean toInclusive)
Returns a view of the portion of this map whose keys range from
fromKey to toKey. |
AsyncAtomicNavigableMap<K,V> |
AsyncAtomicNavigableMap.tailMap(K fromKey,
boolean inclusive)
Returns a view of the portion of this map whose keys are greater than (or
equal to, if
inclusive is true) fromKey. |
Copyright © 2013–2018. All rights reserved.