Class FastHashMap.Entry<K,​V>

  • Enclosing class:
    FastHashMap<K,​V>

    public static class FastHashMap.Entry<K,​V>
    extends java.lang.Object
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private K k  
      private V v  
    • Constructor Summary

      Constructors 
      Constructor Description
      Entry​(K k, V v)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      K getKey()  
      V getValue()  
      private boolean isRemoved()  
      private void remove()  
      • Methods inherited from class java.lang.Object

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

      • k

        private final K k
      • v

        private V v
    • Constructor Detail

      • Entry

        public Entry​(K k,
                     V v)
    • Method Detail

      • isRemoved

        private boolean isRemoved()
      • remove

        private void remove()
      • getKey

        public K getKey()
      • getValue

        public V getValue()