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> |
subMap(K fromKey,
K toKey) |
SortedMapService<K,V> |
tailMap(K fromKey) |
SortedMapService<K,V> |
threadSafe()
Returns a thread-safe version of this service (used during
parallel updates).
|
clone, iterator, keyComparator, valueComparator, values
putIfAbsent, remove, replace, replace
clear, containsKey, containsValue, equals, get, hashCode, isEmpty, put, putAll, remove, size
perform, split, update
comparator, firstKey, lastKey, values
SortedSetService<Map.Entry<K,V>> entrySet()
MapService
SortedSetService<K> keySet()
MapService
null
.SortedMapService<K,V> subMap(K fromKey, K toKey)
SortedMapService<K,V> threadSafe()
MapService
threadSafe
in interface MapService<K,V>
Copyright © 2005-2013 Javolution. All Rights Reserved.