Class ForwardingSortedMap<K,V>
- All Implemented Interfaces:
Map<K,
,V> SequencedMap<K,
,V> SortedMap<K,
V>
- Direct Known Subclasses:
ForwardingNavigableMap
Warning: The methods of ForwardingSortedMap
forward
indiscriminately to the methods of the delegate. For example,
overriding ForwardingMap.put(K, V)
alone will not change the behavior of ForwardingMap.putAll(java.util.Map<? extends K, ? extends V>)
, which can lead to unexpected behavior. In this case, you should
override putAll
as well, either providing your own implementation, or
delegating to the provided standardPutAll
method.
Each of the standard
methods, where appropriate, use the
comparator of the map to test equality for both keys and values, unlike
ForwardingMap
.
The standard
methods and the collection views they return are not
guaranteed to be thread-safe, even when all of the methods that they depend
on are thread-safe.
- Since:
- 2.0 (imported from Google Collections Library)
-
Nested Class Summary
-
Method Summary
Methods inherited from class com.google.common.collect.ForwardingMap
clear, containsKey, containsValue, entrySet, equals, get, hashCode, isEmpty, keySet, put, putAll, remove, size, values
Methods inherited from class com.google.common.collect.ForwardingObject
toString
Methods inherited from interface java.util.Map
clear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, equals, forEach, get, getOrDefault, hashCode, isEmpty, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size
Methods inherited from interface java.util.SequencedMap
firstEntry, lastEntry, pollFirstEntry, pollLastEntry, sequencedEntrySet, sequencedKeySet, sequencedValues
-
Method Details
-
comparator
Deprecated.- Specified by:
comparator
in interfaceSortedMap<K,
V>
-
firstKey
Deprecated. -
headMap
Deprecated. -
lastKey
Deprecated. -
subMap
Deprecated. -
tailMap
Deprecated.
-