java.util.Iterator<java.lang.Boolean>
BooleanBidirectionalIterator
, BooleanBigListIterator
, BooleanListIterator
AbstractBooleanBidirectionalIterator
, AbstractBooleanBigListIterator
, AbstractBooleanIterator
, AbstractBooleanListIterator
, BooleanBigListIterators.BigListIteratorListIterator
, BooleanBigListIterators.EmptyBigListIterator
, BooleanBigListIterators.UnmodifiableBigListIterator
, BooleanIterators.EmptyIterator
, BooleanIterators.UnmodifiableBidirectionalIterator
, BooleanIterators.UnmodifiableIterator
, BooleanIterators.UnmodifiableListIterator
public interface BooleanIterator
extends java.util.Iterator<java.lang.Boolean>
Iterator
; provides an additional method to avoid
(un)boxing, and the possibility to skip elements.Iterator
Modifier and Type | Method | Description |
---|---|---|
default void |
forEachRemaining(BooleanConsumer action) |
Performs the given action for each remaining element until all elements have
been processed or the action throws an exception.
|
default void |
forEachRemaining(java.util.function.Consumer<? super java.lang.Boolean> action) |
Deprecated.
Please use the corresponding type-specific method instead.
|
default java.lang.Boolean |
next() |
Deprecated.
Please use the corresponding type-specific method instead.
|
boolean |
nextBoolean() |
Returns the next element as a primitive type.
|
default int |
skip(int n) |
Skips the given number of elements.
|
boolean nextBoolean()
Iterator.next()
@Deprecated default java.lang.Boolean next()
next
in interface java.util.Iterator<java.lang.Boolean>
default void forEachRemaining(BooleanConsumer action)
action
- the action to be performed for each element.Iterator.forEachRemaining(java.util.function.Consumer)
@Deprecated default void forEachRemaining(java.util.function.Consumer<? super java.lang.Boolean> action)
forEachRemaining
in interface java.util.Iterator<java.lang.Boolean>
default int skip(int n)
The effect of this call is exactly the same as that of calling
next()
for n
times (possibly stopping if Iterator.hasNext()
becomes false).
n
- the number of elements to skip.Iterator.next()