Class AddressIteratorConverter

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean hasNext()
      Checks if there is a next address in the iteration.
      java.util.Iterator<Address> iterator()  
      Address next()
      Get the next address.
      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

    • Method Detail

      • hasNext

        public boolean hasNext()
        Description copied from interface: AddressIterator
        Checks if there is a next address in the iteration.
        Specified by:
        hasNext in interface AddressIterator
        Specified by:
        hasNext in interface java.util.Iterator<Address>
        Returns:
        true if there is a next address.
      • next

        public Address next()
        Description copied from interface: AddressIterator
        Get the next address.
        Specified by:
        next in interface AddressIterator
        Specified by:
        next in interface java.util.Iterator<Address>
        Returns:
        the next address in the iteration.
      • remove

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

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