Class Flat3Map.FlatMapEntry<K,​V>

  • All Implemented Interfaces:
    java.util.Map.Entry<K,​V>
    Enclosing class:
    Flat3Map<K,​V>

    static class Flat3Map.FlatMapEntry<K,​V>
    extends java.lang.Object
    implements java.util.Map.Entry<K,​V>
    • Constructor Summary

      Constructors 
      Constructor Description
      FlatMapEntry​(Flat3Map<K,​V> parent, int index)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object obj)  
      K getKey()  
      V getValue()  
      int hashCode()  
      (package private) void setRemoved​(boolean flag)
      Used by the iterator that created this entry to indicate that Iterator.remove() has been called.
      V setValue​(V value)  
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    • Field Detail

      • index

        private final int index
      • removed

        private volatile boolean removed
    • Constructor Detail

      • FlatMapEntry

        public FlatMapEntry​(Flat3Map<K,​V> parent,
                            int index)
    • Method Detail

      • setRemoved

        void setRemoved​(boolean flag)
        Used by the iterator that created this entry to indicate that Iterator.remove() has been called.

        As a consequence, all subsequent call to getKey(), setValue(Object) and getValue() will fail.

        Parameters:
        flag - the new value of the removed flag
      • getKey

        public K getKey()
        Specified by:
        getKey in interface java.util.Map.Entry<K,​V>
      • getValue

        public V getValue()
        Specified by:
        getValue in interface java.util.Map.Entry<K,​V>
      • setValue

        public V setValue​(V value)
        Specified by:
        setValue in interface java.util.Map.Entry<K,​V>
      • equals

        public boolean equals​(java.lang.Object obj)
        Specified by:
        equals in interface java.util.Map.Entry<K,​V>
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Specified by:
        hashCode in interface java.util.Map.Entry<K,​V>
        Overrides:
        hashCode in class java.lang.Object
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object