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

src.org.neodatis.tool.wrappers.map.OdbHashMap Maven / Gradle / Ivy

There is a newer version: 1.9.30.689
Show newest version
package org.neodatis.tool.wrappers.map;

import java.util.HashMap;
import java.util.Map;

/**
 * @sharpen.ignore
 * @author olivier
 *
 * @param 
 * @param 
 */
public class OdbHashMap extends HashMap {

	public OdbHashMap() {
		super();
	}

	
	public OdbHashMap(int initialCapacity) {
		super(initialCapacity);
	}


	public OdbHashMap(Map m) {
		super(m);
	}


	public void putAll(Map m) {
		super.putAll(m);
	}
	/**
	 * The remove2 method is just to create another method to be able to map the c# equivalent as the Remove in C# does not return the object
	 * @param key
	 * @return
	 */
	public V remove2(K key){
		return remove(key);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy