public class ForwardingSortedMap<K,V> extends Object implements SortedMap<K,V>, Delegatable<SortedMap<K,V>>
| 构造器和说明 |
|---|
ForwardingSortedMap() |
| 限定符和类型 | 方法和说明 |
|---|---|
void |
clear() |
Comparator<? super K> |
comparator() |
boolean |
containsKey(Object key) |
boolean |
containsValue(Object value) |
Set<Map.Entry<K,V>> |
entrySet() |
K |
firstKey() |
V |
get(Object key) |
SortedMap<K,V> |
getDelegate() |
SortedMap<K,V> |
headMap(K toKey) |
boolean |
isEmpty() |
Set<K> |
keySet() |
K |
lastKey() |
V |
put(K key,
V value) |
void |
putAll(Map<? extends K,? extends V> m) |
V |
remove(Object key) |
void |
setDelegate(SortedMap<K,V> delegate) |
int |
size() |
SortedMap<K,V> |
subMap(K fromKey,
K toKey) |
SortedMap<K,V> |
tailMap(K fromKey) |
Collection<V> |
values() |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitcompute, computeIfAbsent, computeIfPresent, equals, forEach, getOrDefault, hashCode, merge, putIfAbsent, remove, replace, replace, replaceAllpublic SortedMap<K,V> getDelegate()
getDelegate 在接口中 Delegatable<SortedMap<K,V>>public void setDelegate(SortedMap<K,V> delegate)
setDelegate 在接口中 Delegatable<SortedMap<K,V>>public Comparator<? super K> comparator()
comparator 在接口中 SortedMap<K,V>public boolean containsKey(Object key)
containsKey 在接口中 Map<K,V>public boolean containsValue(Object value)
containsValue 在接口中 Map<K,V>Copyright © 2022. All rights reserved.