Added in API level 24

OfInt

interface OfInt : Spliterator.OfPrimitive<Int!, IntConsumer!, Spliterator.OfInt!>
java.util.Spliterator.OfInt

A Spliterator specialized for int values.

Summary

Public methods
open Unit

open Unit
forEachRemaining(action: Consumer<in Int!>!)

Performs the given action for each remaining element, sequentially in the current thread, until all elements have been processed or the action throws an exception.

abstract Boolean

open Boolean
tryAdvance(action: Consumer<in Int!>!)

If a remaining element exists, performs the given action on it, returning true; else returns false.

abstract Spliterator.OfInt!

Public methods

forEachRemaining

Added in API level 24
open fun forEachRemaining(action: IntConsumer!): Unit
Parameters
action IntConsumer!: The action
Exceptions
java.lang.NullPointerException if the specified action is null

forEachRemaining

Added in API level 24
open fun forEachRemaining(action: Consumer<in Int!>!): Unit

Performs the given action for each remaining element, sequentially in the current thread, until all elements have been processed or the action throws an exception. If this Spliterator is ORDERED, actions are performed in encounter order. Exceptions thrown by the action are relayed to the caller.

Subsequent behavior of a spliterator is unspecified if the action throws an exception.

Parameters
action Consumer<in Int!>!: The action
Exceptions
java.lang.NullPointerException if the specified action is null

tryAdvance

Added in API level 24
abstract fun tryAdvance(action: IntConsumer!): Boolean
Parameters
action IntConsumer!: The action
Return
Boolean false if no remaining elements existed upon entry to this method, else true.
Exceptions
java.lang.NullPointerException if the specified action is null

tryAdvance

Added in API level 24
open fun tryAdvance(action: Consumer<in Int!>!): Boolean

If a remaining element exists, performs the given action on it, returning true; else returns false. If this Spliterator is ORDERED the action is performed on the next element in encounter order. Exceptions thrown by the action are relayed to the caller.

Subsequent behavior of a spliterator is unspecified if the action throws an exception.

Parameters
action Consumer<in Int!>!: The action
Return
Boolean false if no remaining elements existed upon entry to this method, else true.
Exceptions
java.lang.NullPointerException if the specified action is null

trySplit

Added in API level 24
abstract fun trySplit(): Spliterator.OfInt!
Return
Spliterator.OfInt! a Spliterator covering some portion of the elements, or null if this spliterator cannot be split