Class ArraySetMultiMap<K,​V>

  • All Implemented Interfaces:
    MultiMap<K,​V>, java.io.Serializable

    public class ArraySetMultiMap<K,​V>
    extends java.lang.Object
    See Also:
    Serialized Form
    • Field Detail

      • map

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

        protected final boolean create
    • Constructor Detail

      • ArraySetMultiMap

        public ArraySetMultiMap()
      • ArraySetMultiMap

        public ArraySetMultiMap​(boolean create)
    • Method Detail

      • createSet

        protected java.util.Set<V> createSet()
      • emptySet

        protected java.util.Set<V> emptySet()
      • 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 java.util.Set<V> removeAll​(K key)
        Specified by:
        removeAll in interface MultiMap<K,​V>
      • keySet

        public java.util.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>
      • toString

        public java.lang.String toString()
        Specified by:
        toString in interface MultiMap<K,​V>
        Overrides:
        toString in class java.lang.Object
      • putAll

        public boolean putAll​(K key,
                              java.util.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>