| Package | Description |
|---|---|
| io.atomix.core.map |
Atomic map primitive.
|
| io.atomix.core.set |
Distributed set primitive.
|
| Modifier and Type | Method and Description |
|---|---|
AsyncDistributedNavigableSet<K> |
AsyncDistributedNavigableMap.descendingKeySet()
Returns a reverse order
NavigableSet view of the keys contained in this map. |
AsyncDistributedNavigableSet<K> |
AsyncAtomicNavigableMap.descendingKeySet()
Returns a reverse order
NavigableSet view of the keys contained in this map. |
AsyncDistributedNavigableSet<K> |
AsyncDistributedNavigableMap.navigableKeySet()
Returns a
NavigableSet view of the keys contained in this map. |
AsyncDistributedNavigableSet<K> |
AsyncAtomicNavigableMap.navigableKeySet()
Returns a
NavigableSet view of the keys contained in this map. |
| Modifier and Type | Method and Description |
|---|---|
AsyncDistributedNavigableSet<E> |
DistributedNavigableSet.async() |
AsyncDistributedNavigableSet<E> |
AsyncDistributedNavigableSet.descendingSet()
Returns a reverse order view of the elements contained in this set.
|
AsyncDistributedNavigableSet<E> |
AsyncDistributedNavigableSet.headSet(E toElement,
boolean inclusive)
Returns a view of the portion of this set whose elements are less than
(or equal to, if
inclusive is true) toElement. |
AsyncDistributedNavigableSet<E> |
AsyncDistributedNavigableSet.subSet(E fromElement,
boolean fromInclusive,
E toElement,
boolean toInclusive)
Returns a view of the portion of this set whose elements range from
fromElement to toElement. |
AsyncDistributedNavigableSet<E> |
AsyncDistributedNavigableSet.tailSet(E fromElement,
boolean inclusive)
Returns a view of the portion of this set whose elements are greater
than (or equal to, if
inclusive is true) fromElement. |
Copyright © 2013–2018. All rights reserved.