Package | Description |
---|---|
com.hazelcast.util | |
com.hazelcast.util.concurrent |
Modifier and Type | Method and Description |
---|---|
NavigableSet<K> |
NavigableMap.descendingKeySet()
Returns a reverse order
NavigableSet view of the keys contained in this map. |
NavigableSet<E> |
NavigableSet.descendingSet()
Returns a reverse order view of the elements contained in this set.
|
NavigableSet<E> |
NavigableSet.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 . |
NavigableSet<K> |
NavigableMap.navigableKeySet()
Returns a
NavigableSet view of the keys contained in this map. |
NavigableSet<E> |
NavigableSet.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 . |
NavigableSet<E> |
NavigableSet.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 . |
Modifier and Type | Class and Description |
---|---|
class |
ConcurrentSkipListSet<E>
A scalable concurrent
NavigableSet implementation based on
a ConcurrentSkipListMap . |
Modifier and Type | Method and Description |
---|---|
NavigableSet<K> |
ConcurrentSkipListMap.descendingKeySet() |
NavigableSet<K> |
ConcurrentNavigableMap.descendingKeySet()
Returns a reverse order
NavigableSet view of the keys contained in this map. |
NavigableSet<E> |
ConcurrentSkipListSet.descendingSet()
Returns a reverse order view of the elements contained in this set.
|
NavigableSet<E> |
ConcurrentSkipListSet.headSet(E toElement) |
NavigableSet<E> |
ConcurrentSkipListSet.headSet(E toElement,
boolean inclusive) |
NavigableSet<K> |
ConcurrentSkipListMap.keySet()
Returns a
NavigableSet view of the keys contained in this map. |
NavigableSet<K> |
ConcurrentNavigableMap.keySet()
Returns a
NavigableSet view of the keys contained in this map. |
NavigableSet<K> |
ConcurrentSkipListMap.navigableKeySet() |
NavigableSet<K> |
ConcurrentNavigableMap.navigableKeySet()
Returns a
NavigableSet view of the keys contained in this map. |
NavigableSet<E> |
ConcurrentSkipListSet.subSet(E fromElement,
boolean fromInclusive,
E toElement,
boolean toInclusive) |
NavigableSet<E> |
ConcurrentSkipListSet.subSet(E fromElement,
E toElement) |
NavigableSet<E> |
ConcurrentSkipListSet.tailSet(E fromElement) |
NavigableSet<E> |
ConcurrentSkipListSet.tailSet(E fromElement,
boolean inclusive) |
Copyright © 2013 Hazelcast, Inc.. All rights reserved.