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

cn.tangjiabao.halodb.utils.map.HashMap 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;

/**
 *支持链式调用的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 map) {
		super(map);
	}

	public HashMap set(K key, V value) {
		super.put(key, value);
		return this;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy