Interface Put<K,​V>

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void clear()  
      java.lang.Object put​(K key, V value)
      Note that the return type is Object, rather than V as in the Map interface.
      void putAll​(java.util.Map<? extends K,​? extends V> t)  
    • Method Detail

      • clear

        void clear()
        See Also:
        Map.clear()
      • put

        java.lang.Object put​(K key,
                             V value)
        Note that the return type is Object, rather than V as in the Map interface. See the class Javadoc for further info.
        See Also:
        Map.put(Object, Object)
      • putAll

        void putAll​(java.util.Map<? extends K,​? extends V> t)
        See Also:
        Map.putAll(Map)