Class OffHeapHashMap.HashIterator<T>

    • Field Summary

      Fields 
      Modifier and Type Field Description
      (package private) int expectedModCount  
      (package private) T next  
      (package private) java.nio.IntBuffer table  
      (package private) java.nio.IntBuffer tableView  
    • Constructor Summary

      Constructors 
      Constructor Description
      HashIterator()  
    • Field Detail

      • expectedModCount

        final int expectedModCount
      • table

        final java.nio.IntBuffer table
      • tableView

        final java.nio.IntBuffer tableView
      • next

        T next
    • Constructor Detail

      • HashIterator

        HashIterator()
    • Method Detail

      • create

        protected abstract T create​(java.nio.IntBuffer entry)
      • hasNext

        public boolean hasNext()
        Specified by:
        hasNext in interface java.util.Iterator<T>
      • next

        public T next()
        Specified by:
        next in interface java.util.Iterator<T>
      • remove

        public void remove()
        Specified by:
        remove in interface java.util.Iterator<T>
      • checkForConcurrentModification

        protected void checkForConcurrentModification()