All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.shepherdviolet.glacimon.java.datastruc.IgnoreCaseHashMap Maven / Gradle / Ivy

The newest version!
package com.github.shepherdviolet.glacimon.java.datastruc;

import java.util.HashMap;
import java.util.Map;

/**
 * Key忽略大小写的HashMap
 *
 * @author shepherdviolet
 */
public class IgnoreCaseHashMap extends HashMap {

    @Override
    @SuppressWarnings("unchecked")
    public V put(K key, V value) {
        if (key instanceof String) {
            key = (K) ((String) key).toLowerCase();
        }
        return super.put(key, value);
    }

    @Override
    @SuppressWarnings("unchecked")
    public void putAll(Map m) {
        if (m != null && !m.isEmpty()) {
            for (Entry entry : m.entrySet()) {
                K key = entry.getKey();
                if (key instanceof String) {
                    key = (K) ((String) key).toLowerCase();
                }
                put(key, entry.getValue());
            }
        }
    }

    @Override
    @SuppressWarnings("unchecked")
    public V putIfAbsent(K key, V value) {
        if (key instanceof String) {
            key = (K) ((String) key).toLowerCase();
        }
        return super.putIfAbsent(key, value);
    }

    @Override
    @SuppressWarnings("unchecked")
    public V get(Object key) {
        if (key instanceof String) {
            key = ((String) key).toLowerCase();
        }
        return super.get(key);
    }

    @Override
    @SuppressWarnings("unchecked")
    public V getOrDefault(Object key, V defaultValue) {
        if (key instanceof String) {
            key = ((String) key).toLowerCase();
        }
        return super.getOrDefault(key, defaultValue);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy