public interface SortedMapService<K,V> extends MapService<K,V>, SortedMap<K,V>
| Modifier and Type | Method and Description |
|---|---|
SortedSetService<Map.Entry<K,V>> |
entrySet()
Returns a set view over the entries of this map.
|
SortedMapService<K,V> |
headMap(K toKey) |
SortedSetService<K> |
keySet()
Returns a set view over the key of this map, the set support
adding new key for which the value is automatically
null. |
SortedMapService<K,V>[] |
split(int n,
boolean updateable)
Returns
n distinct parts of this object. |
SortedMapService<K,V> |
subMap(K fromKey,
K toKey) |
SortedMapService<K,V> |
tailMap(K fromKey) |
clone, iterator, keyComparator, valueComparator, valuesputIfAbsent, remove, replace, replaceclear, containsKey, containsValue, equals, get, hashCode, isEmpty, put, putAll, remove, sizeperform, updatecomparator, firstKey, lastKey, valuesSortedSetService<Map.Entry<K,V>> entrySet()
MapServiceSortedSetService<K> keySet()
MapServicenull.SortedMapService<K,V> subMap(K fromKey, K toKey)
SortedMapService<K,V>[] split(int n, boolean updateable)
Splittablen distinct parts of this object.
This method may return an array of size less than n
(e.g. an array of size one if this object cannot split).split in interface Splittable<MapService<K,V>>n - the number of parts.updateable - true if the returned parts can be updated
concurrently; false otherwise.Copyright © 2017. All rights reserved.