| Package | Description |
|---|---|
| javolution.util |
High-performance collection classes with
worst case execution time behavior documented. |
| Modifier and Type | Method and Description |
|---|---|
FastSortedMap<K,V> |
FastSortedMap.add(K key,
V value) |
FastSortedMap<K,V> |
FastSortedMap.atomic() |
FastSortedMap<K,V> |
FastSortedMap.headMap(K toKey)
Returns a view of the portion of this map whose keys are strictly less than toKey.
|
static <K,V> FastSortedMap<K,V> |
FastSortedMap.of(Map<? extends K,? extends V> that)
Returns a new sorted map holding the same entries as the specified
map (convenience method).
|
FastSortedMap<K,V> |
FastSortedMap.shared() |
FastSortedMap<K,V> |
FastSortedMap.subMap(K fromKey,
K toKey)
Returns a view of the portion of this map whose keys range from fromKey, inclusive, to toKey, exclusive.
|
FastSortedMap<K,V> |
FastSortedMap.tailMap(K fromKey)
Returns a view of the portion of this map whose keys are greater than or equal to fromKey.
|
FastSortedMap<K,V> |
FastSortedMap.unmodifiable() |
Copyright © 2017. All rights reserved.