Interface TIterator<E>

All Known Subinterfaces:
TListIterator<E>

public interface TIterator<E>
  • Method Summary

    Modifier and Type
    Method
    Description
    default void
    forEachRemaining(Consumer<? super E> action)
     
    boolean
     
     
    void
     
  • Method Details

    • hasNext

      boolean hasNext()
    • next

      E next()
    • remove

      void remove()
    • forEachRemaining

      default void forEachRemaining(Consumer<? super E> action)