org.h2.value.CaseInsensitiveConcurrentMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of h2-mvstore Show documentation
Show all versions of h2-mvstore Show documentation
Fork of h2database to maintain Java 8 compatibility
The newest version!
/*
* Copyright 2004-2023 H2 Group. Multiple-Licensed under the MPL 2.0,
* and the EPL 1.0 (https://h2database.com/html/license.html).
* Initial Developer: H2 Group
*/
package org.h2.value;
import java.util.concurrent.ConcurrentHashMap;
import org.h2.util.StringUtils;
/**
* A concurrent hash map with case-insensitive string keys.
*
* @param the value type
*/
public class CaseInsensitiveConcurrentMap extends ConcurrentHashMap {
private static final long serialVersionUID = 1L;
@Override
public V get(Object key) {
return super.get(StringUtils.toUpperEnglish((String) key));
}
@Override
public V put(String key, V value) {
return super.put(StringUtils.toUpperEnglish(key), value);
}
@Override
public V putIfAbsent(String key, V value) {
return super.putIfAbsent(StringUtils.toUpperEnglish(key), value);
}
@Override
public boolean containsKey(Object key) {
return super.containsKey(StringUtils.toUpperEnglish((String) key));
}
@Override
public V remove(Object key) {
return super.remove(StringUtils.toUpperEnglish((String) key));
}
}