Class HashMapList<K,V>

java.lang.Object
java.util.AbstractMap<K,V>
java.util.HashMap<K,V>
org.ujmp.core.collections.HashMapList<K,V>
All Implemented Interfaces:
Serializable, Cloneable, Map<K,V>

public class HashMapList<K,V> extends HashMap<K,V>
See Also:
  • Field Details

  • Constructor Details

    • HashMapList

      public HashMapList()
    • HashMapList

      public HashMapList(Map<? extends K,? extends V> m)
  • Method Details

    • put

      public V put(K key, V value)
      Specified by:
      put in interface Map<K,V>
      Overrides:
      put in class HashMap<K,V>
    • indexOf

      public int indexOf(V value)
    • get

      public V get(int index)
    • remove

      public V remove(Object key)
      Specified by:
      remove in interface Map<K,V>
      Overrides:
      remove in class HashMap<K,V>