Modul speiger.src.collections
Schnittstelle IntSplititerator
- Alle Superschnittstellen:
IntIterator,Iterator<Integer>,Spliterator<Integer>,Spliterator.OfPrimitive<Integer,IntConsumer, IntSplititerator>
public interface IntSplititerator
extends Spliterator.OfPrimitive<Integer,IntConsumer,IntSplititerator>, IntIterator
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 Integer> action) Veraltet.default voidforEachRemaining(IntConsumer 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.ints.collections.IntIterator
forEachRemaining, next, nextInt, 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:IntIteratorPerforms 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 SchnittstelleIntIterator- Angegeben von:
forEachRemainingin SchnittstelleSpliterator.OfPrimitive<Integer,IntConsumer, IntSplititerator> - Parameter:
action- The action to be performed for each element- Siehe auch:
-
forEachRemaining
Veraltet.Beschreibung aus Schnittstelle kopiert:IntIteratorThis default implementation delegates to the corresponding type-specific function.
- Angegeben von:
forEachRemainingin SchnittstelleIntIterator- Angegeben von:
forEachRemainingin SchnittstelleIterator<Integer>- Angegeben von:
forEachRemainingin SchnittstelleSpliterator<Integer>
-