Interface ShortIterator

All Superinterfaces:
Iterator<Short>
All Known Subinterfaces:
ShortBidirectionalIterator, ShortBigListIterator, ShortListIterator
All Known Implementing Classes:
AbstractShortBidirectionalIterator, AbstractShortBigListIterator, AbstractShortIterator, AbstractShortListIterator, ShortBigListIterators.BigListIteratorListIterator, ShortBigListIterators.EmptyBigListIterator, ShortBigListIterators.UnmodifiableBigListIterator, ShortIterators.EmptyIterator, ShortIterators.UnmodifiableBidirectionalIterator, ShortIterators.UnmodifiableIterator, ShortIterators.UnmodifiableListIterator

public interface ShortIterator
extends Iterator<Short>
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​(ShortConsumer 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 Short> action)
    Deprecated.
    Please use the corresponding type-specific method instead.
    default Short next()
    Deprecated.
    Please use the corresponding type-specific method instead.
    short nextShort()
    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