Interface ByteIterator

All Superinterfaces:
Iterator<Byte>
All Known Subinterfaces:
ByteBidirectionalIterator, ByteBigListIterator, ByteListIterator
All Known Implementing Classes:
AbstractByteBidirectionalIterator, AbstractByteBigListIterator, AbstractByteIterator, AbstractByteListIterator, ByteBigListIterators.BigListIteratorListIterator, ByteBigListIterators.EmptyBigListIterator, ByteBigListIterators.UnmodifiableBigListIterator, ByteIterators.EmptyIterator, ByteIterators.UnmodifiableBidirectionalIterator, ByteIterators.UnmodifiableIterator, ByteIterators.UnmodifiableListIterator

public interface ByteIterator
extends Iterator<Byte>
A type-specific Iterator; provides an additional method to avoid (un)boxing, and the possibility to skip elements.
See Also:
Iterator
  • Method Summary

    Modifier and Type Method Description
    default void forEachRemaining​(ByteConsumer action)
    Performs the given action for each remaining element until all elements have been processed or the action throws an exception.
    default void forEachRemaining​(Consumer<? super Byte> action)
    Deprecated.
    Please use the corresponding type-specific method instead.
    default Byte next()
    Deprecated.
    Please use the corresponding type-specific method instead.
    byte nextByte()
    Returns the next element as a primitive type.
    default int skip​(int n)
    Skips the given number of elements.

    Methods inherited from interface java.util.Iterator

    hasNext, remove
  • Method Details

    • nextByte

      byte nextByte()
      Returns the next element as a primitive type.
      Returns:
      the next element in the iteration.
      See Also:
      Iterator.next()
    • next

      @Deprecated default Byte next()
      Deprecated.
      Please use the corresponding type-specific method instead.
      Specified by:
      next in interface Iterator<Byte>
    • forEachRemaining

      default void forEachRemaining​(ByteConsumer action)
      Performs the given action for each remaining element until all elements have been processed or the action throws an exception.
      Parameters:
      action - the action to be performed for each element.
      Since:
      8.0.0
      See Also:
      Iterator.forEachRemaining(java.util.function.Consumer)
    • forEachRemaining

      @Deprecated default void forEachRemaining​(Consumer<? super Byte> action)
      Deprecated.
      Please use the corresponding type-specific method instead.
      Specified by:
      forEachRemaining in interface Iterator<Byte>
    • skip

      default int skip​(int n)
      Skips the given number of elements.

      The effect of this call is exactly the same as that of calling next() for n times (possibly stopping if Iterator.hasNext() becomes false).

      Parameters:
      n - the number of elements to skip.
      Returns:
      the number of elements actually skipped.
      See Also:
      Iterator.next()