Class ReadOnlyIterator<T>

java.lang.Object
io.netty.util.internal.ReadOnlyIterator<T>
All Implemented Interfaces:
Iterator<T>

public final class ReadOnlyIterator<T> extends Object implements Iterator<T>
  • Field Details

    • iterator

      private final Iterator<? extends T> iterator
  • Constructor Details

    • ReadOnlyIterator

      public ReadOnlyIterator(Iterator<? extends T> iterator)
  • Method Details

    • hasNext

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

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

      public void remove()
      Specified by:
      remove in interface Iterator<T>