/*
 * Copyright 2004-2019 H2 Group. Multiple-Licensed under the MPL 2.0,
 * and the EPL 1.0 (http://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.
Type parameters:
  • <V> – the value type
/** * A concurrent hash map with case-insensitive string keys. * * @param <V> the value type */
public class CaseInsensitiveConcurrentMap<V> extends ConcurrentHashMap<String, V> { 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 boolean containsKey(Object key) { return super.containsKey(StringUtils.toUpperEnglish((String) key)); } @Override public V remove(Object key) { return super.remove(StringUtils.toUpperEnglish((String) key)); } }