Type Parameters:
T - the type of elements returned by this PrimitiveIterator. The type must be a wrapper type for a primitive type, such as Integer for the primitive int type.
T_CONS - the type of primitive consumer. The type must be a primitive specialization of Consumer for T, such as IntConsumer for Integer.
All Superinterfaces:
Iterator<T>
All Known Subinterfaces:
PrimitiveIterator.OfDouble, PrimitiveIterator.OfInt, PrimitiveIterator.OfLong

public interface PrimitiveIterator<T,​T_CONS>
extends Iterator<T>
Implementation Note:
If the boolean system property org.openjdk.java.util.stream.tripwire is set to true then diagnostic warnings are reported if boxing of primitive values occur when operating on primitive subtype specializations.
Since:
1.8
  • Nested Class Summary

  • Method Summary

    Modifier and Type Method Description
    void forEachRemaining​(T_CONS action)

    Performs the given action for each remaining element, in the order elements occur when iterating, until all elements have been processed or the action throws an exception.

  • Method Details

    • forEachRemaining

      void forEachRemaining​(T_CONS action)

      Performs the given action for each remaining element, in the order elements occur when iterating, until all elements have been processed or the action throws an exception. Errors or runtime exceptions thrown by the action are relayed to the caller.

      Parameters:
      action - The action to be performed for each element
      Throws:
      NullPointerException - if the specified action is null