Modul speiger.src.collections
Schnittstelle ByteSplititerator
- Alle Superschnittstellen:
ByteIterator,Iterator<Byte>,Spliterator<Byte>,Spliterator.OfPrimitive<Byte,ByteConsumer, ByteSplititerator>
public interface ByteSplititerator
extends Spliterator.OfPrimitive<Byte,ByteConsumer,ByteSplititerator>, ByteIterator
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 Byte> action) Veraltet.default voidforEachRemaining(ByteConsumer 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.bytes.collections.ByteIterator
forEachRemaining, next, nextByte, 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:ByteIteratorPerforms 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 SchnittstelleByteIterator- Angegeben von:
forEachRemainingin SchnittstelleSpliterator.OfPrimitive<Byte,ByteConsumer, ByteSplititerator> - Parameter:
action- The action to be performed for each element- Siehe auch:
-
forEachRemaining
Veraltet.Beschreibung aus Schnittstelle kopiert:ByteIteratorThis default implementation delegates to the corresponding type-specific function.
- Angegeben von:
forEachRemainingin SchnittstelleByteIterator- Angegeben von:
forEachRemainingin SchnittstelleIterator<Byte>- Angegeben von:
forEachRemainingin SchnittstelleSpliterator<Byte>
-