com.github.yulichang.toolkit.FieldStringMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mybatis-plus-join-core Show documentation
Show all versions of mybatis-plus-join-core Show documentation
An enhanced toolkit of Mybatis-Plus to simplify development.
package com.github.yulichang.toolkit;
import java.util.HashMap;
import java.util.Locale;
/**
* @author yulichang
* @see HashMap
* @since 1.4.8
*/
public class FieldStringMap extends HashMap {
@Override
public V get(Object key) {
return super.get(key == null ? null : ((String) key).toUpperCase(Locale.ENGLISH));
}
@Override
public boolean containsKey(Object key) {
return super.containsKey(key == null ? null : ((String) key).toUpperCase(Locale.ENGLISH));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy