Is there a good way to have a Map<String, ?> get and put ignoring case?
|
|
|
Would it be possible to implement your own Map overriding put/get methods ?
This approach does not force you to change your "key" type but your Map implementation. |
|||||||||||||||||
|
|
TreeMap extends Map and supports custom comparators. String provides a default case insensitive comparator. So:
|
|||
|
|
|
You could use CaseInsensitiveMap from Apache's Commons Collections. |
||||
|
|
|
You need a wrapper class for your String key with a case-insensitive equals() and hashCode() implementation. Use that instead of the String for the Map's key. See an example implementation at http://www.java.happycodings.com/Java_Util_Package/code3.html I found it in 2 minutes of googling. Looks sensible to me, though I've never used it. |
|||||||||||
|
|
The three obvious solutions that spring to mind:
|
|||
|
|
|
You could use my Apache licensed CaseInsensitiveMap discussed here. Unlike the Apache Commons version, it preserves the case of keys. It implements the map contract more strictly than TreeMap (plus has better concurrent semantics) (see the blog comments for details). |
|||
|
|
|
Trove4j can use custom hashing for a HashMap. This may however have performance implications given that hashcodes cannot be cached (although Trove4j may have found a way around this?). Wrapper objects (as described by John M) do not have this caching deficiency. Also see my other answer regarding TreeMap. |
|||
|
|
|
Check the accepted answer at the link below. How to check for key in a Map irrespective of the case? Bottom line is "The simplest solution is to simply convert all inputs to uppercase (or lowercase) before inserting/checking. You could even write your own Map wrapper that would do this to ensure consistency." |
|||
|
|
