Package org.jumpmind.util
Class LinkedCaseInsensitiveMap<V>
- All Implemented Interfaces:
Serializable,Cloneable,Map<String,V>
- Direct Known Subclasses:
Row
LinkedHashMap variant that stores String keys in a case-insensitive manner, for example for key-based access in a results table.
Preserves the original order as well as the original casing of keys, while allowing for contains, get and remove calls with any case of key.
Does not support null keys.
- Since:
- 3.0
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.util.AbstractMap
AbstractMap.SimpleEntry<K extends Object,V extends Object>, AbstractMap.SimpleImmutableEntry<K extends Object, V extends Object> -
Constructor Summary
ConstructorsConstructorDescriptionCreate a new LinkedCaseInsensitiveMap for the default Locale.LinkedCaseInsensitiveMap(int initialCapacity) Create a new LinkedCaseInsensitiveMap that wraps aLinkedHashMapwith the given initial capacity and stores lower-case keys according to the default Locale.LinkedCaseInsensitiveMap(int initialCapacity, Locale locale) Create a new LinkedCaseInsensitiveMap that wraps aLinkedHashMapwith the given initial capacity and stores lower-case keys according to the given Locale.LinkedCaseInsensitiveMap(Locale locale) Create a new LinkedCaseInsensitiveMap that stores lower-case keys according to the given Locale.LinkedCaseInsensitiveMap(Map<String, ? extends V> values) -
Method Summary
Methods inherited from class java.util.LinkedHashMap
containsValue, entrySet, forEach, getOrDefault, keySet, removeEldestEntry, replaceAll, valuesMethods inherited from class java.util.HashMap
clone, compute, computeIfAbsent, computeIfPresent, isEmpty, merge, putIfAbsent, remove, replace, replace, sizeMethods inherited from class java.util.AbstractMap
equals, hashCode, toStringMethods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, equals, hashCode, isEmpty, merge, putIfAbsent, remove, replace, replace, size
-
Constructor Details
-
LinkedCaseInsensitiveMap
-
LinkedCaseInsensitiveMap
public LinkedCaseInsensitiveMap()Create a new LinkedCaseInsensitiveMap for the default Locale.- See Also:
-
LinkedCaseInsensitiveMap
Create a new LinkedCaseInsensitiveMap that stores lower-case keys according to the given Locale.- Parameters:
locale- the Locale to use for lower-case conversion- See Also:
-
LinkedCaseInsensitiveMap
public LinkedCaseInsensitiveMap(int initialCapacity) Create a new LinkedCaseInsensitiveMap that wraps aLinkedHashMapwith the given initial capacity and stores lower-case keys according to the default Locale.- Parameters:
initialCapacity- the initial capacity- See Also:
-
LinkedCaseInsensitiveMap
Create a new LinkedCaseInsensitiveMap that wraps aLinkedHashMapwith the given initial capacity and stores lower-case keys according to the given Locale.- Parameters:
initialCapacity- the initial capacitylocale- the Locale to use for lower-case conversion- See Also:
-
-
Method Details
-
put
-
putAll
-
containsKey
- Specified by:
containsKeyin interfaceMap<String,V> - Overrides:
containsKeyin classHashMap<String,V>
-
get
-
remove
-
clear
public void clear() -
convertKey
Convert the given key to a case-insensitive key.The default implementation converts the key to lower-case according to this Map's Locale.
- Parameters:
key- the user-specified key- Returns:
- the key to use for storing
- See Also:
-