public class IgnoreCaseLinkedMap<K,V> extends LinkedHashMap<K,V>
AbstractMap.SimpleEntry<K,V>, AbstractMap.SimpleImmutableEntry<K,V>| 构造器和说明 |
|---|
IgnoreCaseLinkedMap() |
| 限定符和类型 | 方法和说明 |
|---|---|
boolean |
containsKey(Object key) |
V |
get(Object key) |
V |
put(K key,
V value) |
void |
putAll(Map<? extends K,? extends V> map) |
V |
putIfAbsent(K key,
V value) |
V |
remove(Object key) |
V |
replace(K key,
V value) |
boolean |
replace(K key,
V value1,
V value2) |
clear, containsValue, entrySet, forEach, getOrDefault, keySet, removeEldestEntry, replaceAll, valuesclone, compute, computeIfAbsent, computeIfPresent, isEmpty, merge, remove, sizeequals, hashCode, toStringcompute, computeIfAbsent, computeIfPresent, equals, hashCode, isEmpty, merge, remove, sizepublic V putIfAbsent(K key, V value)
putIfAbsent 在接口中 Map<K,V>putIfAbsent 在类中 HashMap<K,V>public boolean containsKey(Object key)
containsKey 在接口中 Map<K,V>containsKey 在类中 HashMap<K,V>Copyright © 2023. All rights reserved.