org.neodatis.tool.wrappers.map
Class OdbHashMap<K,V>

java.lang.Object
  extended by java.util.AbstractMap<K,V>
      extended by java.util.HashMap<K,V>
          extended by org.neodatis.tool.wrappers.map.OdbHashMap<K,V>
Type Parameters:
K -
V -
All Implemented Interfaces:
java.io.Serializable, java.lang.Cloneable, java.util.Map<K,V>
Direct Known Subclasses:
AttributeValuesMap

public class OdbHashMap<K,V>
extends java.util.HashMap<K,V>

Author:
olivier
See Also:
Serialized Form

Constructor Summary
OdbHashMap()
           
OdbHashMap(int initialCapacity)
           
OdbHashMap(java.util.Map<? extends K,? extends V> m)
           
 
Method Summary
 void putAll(java.util.Map<? extends K,? extends V> m)
           
 V remove2(K key)
          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
 
Methods inherited from class java.util.HashMap
clear, clone, containsKey, containsValue, entrySet, get, isEmpty, keySet, put, remove, size, values
 
Methods inherited from class java.util.AbstractMap
equals, hashCode, toString
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface java.util.Map
equals, hashCode
 

Constructor Detail

OdbHashMap

public OdbHashMap()

OdbHashMap

public OdbHashMap(int initialCapacity)

OdbHashMap

public OdbHashMap(java.util.Map<? extends K,? extends V> m)
Method Detail

putAll

public void putAll(java.util.Map<? extends K,? extends V> m)
Specified by:
putAll in interface java.util.Map<K,V>
Overrides:
putAll in class java.util.HashMap<K,V>

remove2

public V remove2(K key)
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

Parameters:
key -
Returns: