Class Multimap<K,​V>


  • public class Multimap<K,​V>
    extends java.lang.Object
    • Constructor Summary

      Constructors 
      Constructor Description
      Multimap()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.util.Collection<V> get​(K key)  
      java.util.Set<K> keySet()  
      void put​(K key, V value)  
      void remove​(K key, V value)  
      java.lang.Iterable<V> values()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • Multimap

        public Multimap()
    • Method Detail

      • get

        public java.util.Collection<V> get​(K key)
      • put

        public void put​(K key,
                        V value)
      • remove

        public void remove​(K key,
                           V value)
      • values

        public java.lang.Iterable<V> values()
      • keySet

        public java.util.Set<K> keySet()