cn.tangjiabao.halodb.utils.map.MyLinkedHashMap 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;
/**
*支持链式调用的LinkedHashMap
* @author [email protected]
* @date 2015-6-14 下午10:39:09
*/
public class MyLinkedHashMap extends LinkedHashMap implements Map{
/**
* @Fields serialVersionUID : TODO
*/
private static final long serialVersionUID = 3409416404907094871L;
public MyLinkedHashMap() {
}
public MyLinkedHashMap(Map map) {
if (null == map) {
map = new MyHashMap();
}
for (Entry entry : map.entrySet()) {
this.set(entry.getKey(), entry.getValue());
}
}
public MyLinkedHashMap set(String key, Object value) {
super.put(key, value);
return this;
}
public MyLinkedHashMap put(String key, Object value) {
return this.set(key, value);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy