
src.org.neodatis.tool.wrappers.map.OdbHashMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neodatis-odb Show documentation
Show all versions of neodatis-odb Show documentation
The NeoDatis Object Database
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 extends K, ? extends V> m) {
super(m);
}
public void putAll(Map extends K, ? extends V> 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