类 LinkedCaseInsensitiveMap<V>

java.lang.Object
cn.taketoday.util.LinkedCaseInsensitiveMap<V>
类型参数:
V - the value type
所有已实现的接口:
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.

从以下版本开始:
2019-12-08 20:20
作者:
Juergen Hoeller, Phillip Webb, Harry Yang
另请参阅: