V - The Type of the Values stored in this CaseInsensitiveMappublic class CaseInsensitiveMap<V>
extends java.util.HashMap<java.lang.Object,V>
| Constructor and Description | 
|---|
| CaseInsensitiveMap() | 
| Modifier and Type | Method and Description | 
|---|---|
| boolean | containsKey(java.lang.Object key)Returns true if the CaseInsensitiveMap contains the given key. | 
| V | get(java.lang.Object key)Returns the value stored in this CaseInsensitiveMap for the given key. | 
| V | put(java.lang.Object key,
   V value)Puts the given key/value pair into this CaseInsensitiveMap. | 
| V | remove(java.lang.Object key)Removes the value stored in this CaseInsensitiveMap for the given key. | 
clear, clone, containsValue, entrySet, isEmpty, keySet, putAll, size, valuespublic boolean containsKey(java.lang.Object key)
public V get(java.lang.Object key)
public V put(java.lang.Object key, V value)
put in interface java.util.Map<java.lang.Object,V>put in class java.util.HashMap<java.lang.Object,V>key - The key indicating the location in this CaseInsensitiveMap
            where the given value should be storedvalue - The value to be stored in this CaseInsensensitiveMap under the
            given key