Package | Description |
---|---|
org.jboss.util.collection |
Extentions to the Java Collections framework.
|
Modifier and Type | Interface and Description |
---|---|
interface |
ConcurrentNavigableMap<K,V>
A
ConcurrentMap supporting NavigableMap operations. |
Modifier and Type | Class and Description |
---|---|
class |
ConcurrentSkipListMap<K,V>
A scalable
ConcurrentNavigableMap implementation. |
Modifier and Type | Method and Description |
---|---|
NavigableMap<K,V> |
NavigableMap.headMap(K toKey)
Returns a view of the portion of this map whose keys are strictly less
than toKey.
|
NavigableMap<K,V> |
NavigableMap.subMap(K fromKey,
K toKey)
Returns a view of the portion of this map whose keys range from
fromKey, inclusive, to toKey, exclusive.
|
NavigableMap<K,V> |
NavigableMap.tailMap(K fromKey)
Returns a view of the portion of this map whose keys are
greater than or equal to fromKey.
|
Copyright © 2018 JBoss by Red Hat. All rights reserved.