Class Storage.FMap<K>

  • All Implemented Interfaces:
    java.util.Map<K,​T>
    Enclosing class:
    Storage<T>

    private final class Storage.FMap<K>
    extends java.lang.Object
    implements java.util.Map<K,​T>
    • Nested Class Summary

      • Nested classes/interfaces inherited from interface java.util.Map

        java.util.Map.Entry<K extends java.lang.Object,​V extends java.lang.Object>
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private Hash<K,​? super T> fHash  
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      private FMap​(Hash<K,​? super T> h)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void clear()  
      boolean containsKey​(java.lang.Object o)  
      boolean containsValue​(java.lang.Object value)  
      java.util.Set<java.util.Map.Entry<K,​T>> entrySet()  
      T get​(java.lang.Object o)  
      boolean isEmpty()  
      java.util.Set<K> keySet()  
      T put​(K key, T value)  
      void putAll​(java.util.Map<? extends K,​? extends T> m)  
      T remove​(java.lang.Object o)  
      int size()  
      java.util.Collection<T> values()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface java.util.Map

        compute, computeIfAbsent, computeIfPresent, equals, forEach, getOrDefault, hashCode, merge, putIfAbsent, remove, replace, replace, replaceAll
    • Constructor Detail

    • Method Detail

      • size

        public int size()
        Specified by:
        size in interface java.util.Map<K,​T>
      • isEmpty

        public boolean isEmpty()
        Specified by:
        isEmpty in interface java.util.Map<K,​T>
      • containsKey

        public boolean containsKey​(java.lang.Object o)
        Specified by:
        containsKey in interface java.util.Map<K,​T>
      • containsValue

        public boolean containsValue​(java.lang.Object value)
        Specified by:
        containsValue in interface java.util.Map<K,​T>
      • get

        public T get​(java.lang.Object o)
        Specified by:
        get in interface java.util.Map<K,​T>
      • put

        public T put​(K key,
                     T value)
        Specified by:
        put in interface java.util.Map<K,​T>
      • remove

        public T remove​(java.lang.Object o)
        Specified by:
        remove in interface java.util.Map<K,​T>
      • putAll

        public void putAll​(java.util.Map<? extends K,​? extends T> m)
        Specified by:
        putAll in interface java.util.Map<K,​T>
      • clear

        public void clear()
        Specified by:
        clear in interface java.util.Map<K,​T>
      • keySet

        public java.util.Set<KkeySet()
        Specified by:
        keySet in interface java.util.Map<K,​T>
      • values

        public java.util.Collection<Tvalues()
        Specified by:
        values in interface java.util.Map<K,​T>
      • entrySet

        public java.util.Set<java.util.Map.Entry<K,​T>> entrySet()
        Specified by:
        entrySet in interface java.util.Map<K,​T>