Class ReferenceIteratorAdapter

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean hasNext()
      Returns whether there is a next memory reference in the iterator.
      java.util.Iterator<Reference> iterator()  
      Reference next()
      Get the next memory reference.
      void remove()  
      • Methods inherited from class java.lang.Object

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

        forEach, spliterator
      • Methods inherited from interface java.util.Iterator

        forEachRemaining
    • Constructor Detail

      • ReferenceIteratorAdapter

        public ReferenceIteratorAdapter​(java.util.Iterator<Reference> iterator)
    • Method Detail

      • hasNext

        public boolean hasNext()
        Description copied from interface: ReferenceIterator
        Returns whether there is a next memory reference in the iterator.
        Specified by:
        hasNext in interface java.util.Iterator<Reference>
        Specified by:
        hasNext in interface ReferenceIterator
      • remove

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

        public java.util.Iterator<Reference> iterator()
        Specified by:
        iterator in interface java.lang.Iterable<Reference>