Class CaseInsensitiveHashMap<K,​V>

  • All Implemented Interfaces:
    Serializable, Cloneable, Map<K,​V>
    Direct Known Subclasses:
    AMHashMap

    public class CaseInsensitiveHashMap<K,​V>
    extends HashMap<K,​V>
    A case insensitive hash map with case preservation. If key is a String, a case insensitive hash code is used for hashing but original case of the key is preserved.
    See Also:
    Serialized Form
    • Constructor Detail

      • CaseInsensitiveHashMap

        public CaseInsensitiveHashMap()
      • CaseInsensitiveHashMap

        public CaseInsensitiveHashMap​(int initialCapacity)
      • CaseInsensitiveHashMap

        public CaseInsensitiveHashMap​(int initialCapacity,
                                      float loadFactor)
      • CaseInsensitiveHashMap

        public CaseInsensitiveHashMap​(Map t)