public class CaseInsensitiveMap<V> extends HashMap<String,V>
HashMap implementation that uses Strings as its keys
where the keys are treated without regard to case. That is, get("MyTableName")
will return the same object as get("MYTABLENAME").AbstractMap.SimpleEntry<K,V>, AbstractMap.SimpleImmutableEntry<K,V>| コンストラクタと説明 |
|---|
CaseInsensitiveMap() |
| 修飾子とタイプ | メソッドと説明 |
|---|---|
boolean |
containsKey(Object key) |
V |
get(Object key) |
V |
put(String key,
V value) |
void |
putAll(Map<? extends String,? extends V> map) |
V |
remove(Object key) |
clear, clone, compute, computeIfAbsent, computeIfPresent, containsValue, entrySet, forEach, getOrDefault, isEmpty, keySet, merge, putIfAbsent, remove, replace, replace, replaceAll, size, valuesequals, hashCode, toStringCopyright © 2016. All Rights Reserved.