public class ListOrderedMapCI<T> extends LinkedHashMap<String,T>
AbstractMap.SimpleEntry<K,V>, AbstractMap.SimpleImmutableEntry<K,V>
Constructor and Description |
---|
ListOrderedMapCI() |
Modifier and Type | Method and Description |
---|---|
boolean |
containsKey(Object key)
Test if the key exists in the mapping.
|
T |
get(Object key)
Get the object associated with this key.
|
T |
put(String key,
T value)
Adds a value to the end of the list with the specified key.
|
T |
remove(Object key)
Removes the mapping for the specified key.
|
clear, containsValue, entrySet, forEach, getOrDefault, keySet, removeEldestEntry, replaceAll, values
clone, compute, computeIfAbsent, computeIfPresent, isEmpty, merge, putAll, putIfAbsent, remove, replace, replace, size
equals, hashCode, toString
finalize, getClass, notify, notifyAll, wait, wait, wait
compute, computeIfAbsent, computeIfPresent, equals, hashCode, isEmpty, merge, putAll, putIfAbsent, remove, replace, replace, size
public boolean containsKey(Object key)
containsKey
in interface Map<String,T>
containsKey
in class HashMap<String,T>
key
- The case insensitive key to test for.Copyright © 2000–2020 The Apache Software Foundation. All rights reserved.