com.venky.core.collections.IgnoreCaseMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common Show documentation
Show all versions of common Show documentation
Commonly used programming tasks in java
package com.venky.core.collections;
import java.util.TreeMap;
import com.venky.core.checkpoint.Mergeable;
import com.venky.core.util.ObjectUtil;
public class IgnoreCaseMap extends TreeMap implements Cloneable, Mergeable>{
private static final long serialVersionUID = 5311588254312204361L;
protected String ucase(Object other){
return UpperCaseStringCache.instance().get(String.valueOf(other));
}
@Override
public boolean containsKey(Object key) {
return super.containsKey(ucase(key));
}
@Override
public V get(Object key) {
return super.get(ucase(key));
}
@Override
public V put(String key, V value) {
return super.put(ucase(key), value);
}
@Override
public V remove(Object key) {
return super.remove(ucase(key));
}
@SuppressWarnings("unchecked")
public IgnoreCaseMap clone(){
IgnoreCaseMap clone = (IgnoreCaseMap) super.clone();
ObjectUtil.cloneValues(clone);
return clone;
}
public void merge(IgnoreCaseMap another) {
ObjectUtil.mergeValues(another,this);
}
}