Class HashSetMultiMap<K,​V>

    • Field Detail

      • map

        protected final Map<K,​Set<V>> map
      • create

        protected final boolean create
    • Constructor Detail

      • HashSetMultiMap

        public HashSetMultiMap()
      • HashSetMultiMap

        public HashSetMultiMap​(boolean create)
    • Method Detail

      • createSet

        protected Set<V> createSet()
      • emptySet

        protected Set<V> emptySet()
      • get

        public Set<V> get​(K key)
        Specified by:
        get in interface MultiMap<K,​V>
      • put

        public boolean put​(K key,
                           V val)
        Specified by:
        put in interface MultiMap<K,​V>
      • remove

        public boolean remove​(K key,
                              V val)
        Specified by:
        remove in interface MultiMap<K,​V>
      • removeAll

        public Set<V> removeAll​(K key)
        Specified by:
        removeAll in interface MultiMap<K,​V>
      • keySet

        public Set<K> keySet()
        Specified by:
        keySet in interface MultiMap<K,​V>
      • containsKey

        public boolean containsKey​(K key)
        Specified by:
        containsKey in interface MultiMap<K,​V>
      • size

        public int size()
        Specified by:
        size in interface MultiMap<K,​V>
      • putAll

        public boolean putAll​(K key,
                              Collection<? extends V> vals)
        Specified by:
        putAll in interface MultiMap<K,​V>
      • clear

        public void clear()
        Specified by:
        clear in interface MultiMap<K,​V>
      • isEmpty

        public boolean isEmpty()
        Specified by:
        isEmpty in interface MultiMap<K,​V>