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. @author Juergen Hoeller @since 3.0
null
139140141142143144145
* @return the new Map instance * @deprecated as of Spring 3.0, for usage on JDK 1.5 or higher */ @Deprecated public static Map createLinkedCaseInsensitiveMapIfPossible(int initialCapacity) { return new LinkedCaseInsensitiveMap(initialCapacity); }
138139140141142143144
137138139140141142143