Class ArrayListHashMap<K,​V>

  • Type Parameters:
    K - The type of map key.
    V - The type of map value.
    All Implemented Interfaces:
    CollectionMap<K,​V,​java.util.List<V>>, java.util.Map<K,​java.util.List<V>>

    public class ArrayListHashMap<K,​V>
    extends ArrayListMap<K,​V>
    An implementation of a HashMap that stores an ArrayList of values for each key, with special methods for retrieving single values.
    Author:
    Garret Wilson
    • Constructor Detail

      • ArrayListHashMap

        public ArrayListHashMap()
        Default constructor that decorates a HashMap.