Klasse ArrayListIterator<E>

java.lang.Object
ch.nolix.core.container.arraylist.ArrayListIterator<E>
Alle implementierten Schnittstellen:
CopyableIterator<E>, Copyable<CopyableIterator<E>>, Iterator<E>

public final class ArrayListIterator<E> extends Object implements CopyableIterator<E>
  • Methodendetails

    • forArrayAndMaxNextIndex

      public static <E2> ArrayListIterator<E2> forArrayAndMaxNextIndex(E2[] array, int maxNextIndex)
    • forArrayAndStartIndexAndMaxNextIndex

      public static <E2> ArrayListIterator<E2> forArrayAndStartIndexAndMaxNextIndex(E2[] array, int startIndex, int maxIndex)
    • createCopy

      public CopyableIterator<E> createCopy()
      Angegeben von:
      createCopy in Schnittstelle Copyable<E>
      Gibt zurück:
      a new copy of the current Copyable.
    • hasNext

      public boolean hasNext()
      Angegeben von:
      hasNext in Schnittstelle Iterator<E>
    • next

      public E next()
      Angegeben von:
      next in Schnittstelle Iterator<E>