![JAR search and dependency download from the Maven repository](/logo.png)
cn.dreampie.common.entity.CaseInsensitiveMap Maven / Gradle / Ivy
package cn.dreampie.common.entity;
import java.util.TreeMap;
/**
* A case insensitive map for java.lang.String
keys. The current implementation is based on
* {@link java.util.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);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy