| Package | Description |
|---|---|
| ma.glasnost.orika.jsr166x |
| Modifier and Type | Class and Description |
|---|---|
class |
ConcurrentSkipListMap<K,V>
A scalable
ConcurrentNavigableMap implementation. |
| Modifier and Type | Method and Description |
|---|---|
ConcurrentNavigableMap<K,V> |
ConcurrentNavigableMap.headMap(K toKey)
Returns a view of the portion of this map whose keys are strictly less
than toKey.
|
ConcurrentNavigableMap<K,V> |
ConcurrentSkipListMap.headMap(K toKey)
Returns a view of the portion of this map whose keys are
strictly less than toKey.
|
ConcurrentNavigableMap<K,V> |
ConcurrentNavigableMap.subMap(K fromKey,
K toKey)
Returns a view of the portion of this map whose keys range from
fromKey, inclusive, to toKey, exclusive.
|
ConcurrentNavigableMap<K,V> |
ConcurrentSkipListMap.subMap(K fromKey,
K toKey)
Returns a view of the portion of this map whose keys range from
fromKey, inclusive, to toKey, exclusive.
|
ConcurrentNavigableMap<K,V> |
ConcurrentNavigableMap.tailMap(K fromKey)
Returns a view of the portion of this map whose keys are
greater than or equal to fromKey.
|
ConcurrentNavigableMap<K,V> |
ConcurrentSkipListMap.tailMap(K fromKey)
Returns a view of the portion of this map whose keys are
greater than or equal to fromKey.
|
Copyright © 2017 Glasnost. All Rights Reserved.