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

cn.tangjiabao.halodb.utils.map.MyLinkedHashMap Maven / Gradle / Ivy

Go to download

Orm whitch The highest development efficiency and Efficiency is the fastest

There is a newer version: 0.17
Show newest version
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