cn.tangjiabao.halodb.utils.map.HashMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of haloDb Show documentation
Show all versions of haloDb Show documentation
Orm whitch The highest development efficiency and Efficiency is the fastest
package cn.tangjiabao.halodb.utils.map;
import java.util.Map;
/**
*支持链式调用的HashMap
* @author [email protected]
* @date 2015-6-14 下午10:37:59
* @param
* @param
*/
public class HashMap extends java.util.HashMap implements Map {
/**
* @Fields serialVersionUID : TODO
*/
private static final long serialVersionUID = -7709853214708221134L;
public HashMap() {
super();
}
public HashMap(Map extends K, ? extends V> map) {
super(map);
}
public HashMap set(K key, V value) {
super.put(key, value);
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy