com.cybermkd.common.entity.CaseInsensitiveMap Maven / Gradle / Ivy
package com.cybermkd.common.entity;
import java.util.TreeMap;
/**
* A case insensitive map for java.lang.String
keys. The current implementation is based on
* {@link TreeMap}, so it does not accept null
keys and keeps entries ordered by case
* insensitive alphabetical order of keys.
*/
public class CaseInsensitiveMap extends TreeMap {
public CaseInsensitiveMap() {
super(String.CASE_INSENSITIVE_ORDER);
}
}