Modul speiger.src.collections
Schnittstelle BooleanSplititerator
- Alle Superschnittstellen:
BooleanIterator,Iterator<Boolean>,Spliterator<Boolean>,Spliterator.OfPrimitive<Boolean,BooleanConsumer, BooleanSplititerator>
public interface BooleanSplititerator
extends Spliterator.OfPrimitive<Boolean,BooleanConsumer,BooleanSplititerator>, BooleanIterator
A Type Specific Split-Iterator that reduces boxing/unboxing
It fills the gaps of the java and uses this collection interfaces
-
Verschachtelte Klassen - Übersicht
Von Schnittstelle geerbte verschachtelte Klassen/Schnittstellen java.util.Spliterator
Spliterator.OfDouble, Spliterator.OfInt, Spliterator.OfLong, Spliterator.OfPrimitive<T,T_CONS, T_SPLITR extends Spliterator.OfPrimitive<T, T_CONS, T_SPLITR>> -
Feldübersicht
Von Schnittstelle geerbte Felder java.util.Spliterator
CONCURRENT, DISTINCT, IMMUTABLE, NONNULL, ORDERED, SIZED, SORTED, SUBSIZED -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungdefault voidforEachRemaining(Consumer<? super Boolean> action) Veraltet.default voidforEachRemaining(BooleanConsumer action) Performs the given action for each remaining element until all elements have been processed or the action throws an exception.Von Schnittstelle geerbte Methoden speiger.src.collections.booleans.collections.BooleanIterator
forEachRemaining, next, nextBoolean, skipVon Schnittstelle geerbte Methoden java.util.Spliterator
characteristics, estimateSize, getComparator, getExactSizeIfKnown, hasCharacteristics, tryAdvanceVon Schnittstelle geerbte Methoden java.util.Spliterator.OfPrimitive
tryAdvance, trySplit
-
Methodendetails
-
forEachRemaining
Beschreibung aus Schnittstelle kopiert:BooleanIteratorPerforms the given action for each remaining element until all elements have been processed or the action throws an exception. Actions are performed in the order of iteration, if that order is specified. Exceptions thrown by the action are relayed to the caller.- Angegeben von:
forEachRemainingin SchnittstelleBooleanIterator- Angegeben von:
forEachRemainingin SchnittstelleSpliterator.OfPrimitive<Boolean,BooleanConsumer, BooleanSplititerator> - Parameter:
action- The action to be performed for each element- Siehe auch:
-
forEachRemaining
Veraltet.Beschreibung aus Schnittstelle kopiert:BooleanIteratorThis default implementation delegates to the corresponding type-specific function.
- Angegeben von:
forEachRemainingin SchnittstelleBooleanIterator- Angegeben von:
forEachRemainingin SchnittstelleIterator<Boolean>- Angegeben von:
forEachRemainingin SchnittstelleSpliterator<Boolean>
-