Class LinkedCaseInsensitiveMap<V>
java.lang.Object
org.springframework.util.LinkedCaseInsensitiveMap<V>
- Type Parameters:
V
- the value type
- All Implemented Interfaces:
Serializable
,Cloneable
,Map<String,
V>
public class LinkedCaseInsensitiveMap<V>
extends Object
implements Map<String,V>, Serializable, Cloneable
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
- Author:
- Juergen Hoeller, Phillip Webb
- See Also:
-
Nested Class Summary
-
Constructor Summary
ConstructorsConstructorDescriptionCreate a new LinkedCaseInsensitiveMap that stores case-insensitive keys according to the default Locale (by default in lower case).LinkedCaseInsensitiveMap
(int expectedSize) Create a new LinkedCaseInsensitiveMap that wraps aLinkedHashMap
with an initial capacity that can accommodate the specified number of elements without any immediate resize/rehash operations to be expected, storing case-insensitive keys according to the default Locale (in lower case).LinkedCaseInsensitiveMap
(int expectedSize, @Nullable Locale locale) Create a new LinkedCaseInsensitiveMap that wraps aLinkedHashMap
with an initial capacity that can accommodate the specified number of elements without any immediate resize/rehash operations to be expected, storing case-insensitive keys according to the given Locale (in lower case).LinkedCaseInsensitiveMap
(@Nullable Locale locale) Create a new LinkedCaseInsensitiveMap that stores case-insensitive keys according to the given Locale (in lower case). -
Method Summary
Modifier and TypeMethodDescriptionvoid
clear()
clone()
computeIfAbsent
(String key, Function<? super String, ? extends V> mappingFunction) boolean
containsKey
(Object key) boolean
containsValue
(Object value) protected String
convertKey
(String key) Convert the given key to a case-insensitive key.entrySet()
boolean
void
forEach
(BiConsumer<? super String, ? super V> action) Return the locale used by thisLinkedCaseInsensitiveMap
.getOrDefault
(Object key, V defaultValue) int
hashCode()
boolean
isEmpty()
keySet()
void
putIfAbsent
(String key, @Nullable V value) protected boolean
removeEldestEntry
(Map.Entry<String, V> eldest) Determine whether this map should remove the given eldest entry.int
size()
toString()
values()
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.util.Map
compute, computeIfPresent, merge, remove, replace, replace, replaceAll
-
Constructor Details
-
LinkedCaseInsensitiveMap
public LinkedCaseInsensitiveMap()Create a new LinkedCaseInsensitiveMap that stores case-insensitive keys according to the default Locale (by default in lower case).- See Also:
-
LinkedCaseInsensitiveMap
-
LinkedCaseInsensitiveMap
public LinkedCaseInsensitiveMap(int expectedSize) Create a new LinkedCaseInsensitiveMap that wraps aLinkedHashMap
with an initial capacity that can accommodate the specified number of elements without any immediate resize/rehash operations to be expected, storing case-insensitive keys according to the default Locale (in lower case).- Parameters:
expectedSize
- the expected number of elements (with a corresponding capacity to be derived so that no resize/rehash operations are needed)- See Also:
-
LinkedCaseInsensitiveMap
Create a new LinkedCaseInsensitiveMap that wraps aLinkedHashMap
with an initial capacity that can accommodate the specified number of elements without any immediate resize/rehash operations to be expected, storing case-insensitive keys according to the given Locale (in lower case).- Parameters:
expectedSize
- the expected number of elements (with a corresponding capacity to be derived so that no resize/rehash operations are needed)locale
- the Locale to use for case-insensitive key conversion- See Also:
-
-
Method Details
-
size
-
isEmpty
-
containsKey
- Specified by:
containsKey
in interfaceMap<String,
V>
-
containsValue
- Specified by:
containsValue
in interfaceMap<String,
V>
-
get
-
getOrDefault
-
put
-
putAll
-
putIfAbsent
-
computeIfAbsent
-
remove
-
clear
-
keySet
-
values
-
entrySet
-
forEach
-
clone
-
equals
-
hashCode
-
toString
-
getLocale
Return the locale used by thisLinkedCaseInsensitiveMap
. Used for case-insensitive key conversion.- Since:
- 4.3.10
- See Also:
-
convertKey
-
removeEldestEntry
-