| Package | Description |
|---|---|
| io.atomix.core.map |
Atomic map primitive.
|
| Modifier and Type | Method and Description |
|---|---|
AsyncDistributedNavigableMap<K,V> |
DistributedNavigableMap.async() |
AsyncDistributedNavigableMap<K,V> |
AsyncDistributedNavigableMap.descendingMap()
Returns a reverse order view of the mappings contained in this map.
|
AsyncDistributedNavigableMap<K,V> |
AsyncDistributedNavigableMap.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. |
AsyncDistributedNavigableMap<K,V> |
AsyncDistributedNavigableMap.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. |
AsyncDistributedNavigableMap<K,V> |
AsyncDistributedNavigableMap.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.