Modul speiger.src.collections
Schnittstelle ShortSplititerator
- Alle Superschnittstellen:
Iterator<Short>,ShortIterator,Spliterator<Short>,Spliterator.OfPrimitive<Short,ShortConsumer, ShortSplititerator>
public interface ShortSplititerator
extends Spliterator.OfPrimitive<Short,ShortConsumer,ShortSplititerator>, ShortIterator
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 Short> action) Veraltet.default voidforEachRemaining(ShortConsumer 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.shorts.collections.ShortIterator
forEachRemaining, next, nextShort, 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:ShortIteratorPerforms 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 SchnittstelleShortIterator- Angegeben von:
forEachRemainingin SchnittstelleSpliterator.OfPrimitive<Short,ShortConsumer, ShortSplititerator> - Parameter:
action- The action to be performed for each element- Siehe auch:
-
forEachRemaining
Veraltet.Beschreibung aus Schnittstelle kopiert:ShortIteratorThis default implementation delegates to the corresponding type-specific function.
- Angegeben von:
forEachRemainingin SchnittstelleIterator<Short>- Angegeben von:
forEachRemainingin SchnittstelleShortIterator- Angegeben von:
forEachRemainingin SchnittstelleSpliterator<Short>
-