Class CollectionMap<K,​V>

  • All Implemented Interfaces:
    Map<K,​Collection<V>>

    public class CollectionMap<K,​V>
    extends Object
    implements Map<K,​Collection<V>>
    A Map whose values are Collections.
    • Constructor Detail

      • CollectionMap

        public CollectionMap​(Class<? extends Map> mapClass)
        Creates a CollectionMap backed by the given Map class.
        Parameters:
        mapClass - a Class that implements Map
      • CollectionMap

        public CollectionMap()
        Creates a CollectionMap.
    • Method Detail

      • addItem

        public void addItem​(K key,
                            V item)
        Adds the item to the Collection at the given key, creating a new Collection if necessary.
        Parameters:
        key - the key to the Collection to which the item should be added
        item - the item to add
      • removeItem

        public void removeItem​(K key,
                               V item)
      • clear

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

        public void addItems​(K key,
                             Collection<V> items)
        Adds the items to the Collection at the given key, creating a new Collection if necessary.
        Parameters:
        key - the key to the Collection to which the items should be added
        items - the items to add
      • values

        public Collection<Collection<V>> values()
        Returns the values.
        Specified by:
        values in interface Map<K,​V>
        Returns:
        a view of the values, backed by this CollectionMap
      • keySet

        public Set<K> keySet()
        Returns the keys.
        Specified by:
        keySet in interface Map<K,​V>
        Returns:
        a view of the keys, backed by this CollectionMap
      • size

        public int size()
        Returns the number of mappings.
        Specified by:
        size in interface Map<K,​V>
        Returns:
        the number of key-value pairs
      • containsKey

        public boolean containsKey​(Object key)
        Specified by:
        containsKey in interface Map<K,​V>
      • isEmpty

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

        public void putAll​(Map<? extends K,​? extends Collection<V>> map)
        Specified by:
        putAll in interface Map<K,​V>
      • removeItems

        public void removeItems​(K key,
                                Collection<V> items)