Class ObjectSpliterators.AbstractIndexBasedSpliterator<K>
- All Implemented Interfaces:
ObjectSpliterator<K>,Spliterator<K>
- Direct Known Subclasses:
ObjectSpliterators.EarlyBindingSizeIndexBasedSpliterator,ObjectSpliterators.LateBindingSizeIndexBasedSpliterator
- Enclosing class:
ObjectSpliterators
This class is only appropriate for sequences that are at most Integer.MAX_VALUE long. If
your backing data store can be bigger then this, consider the equivalently named class in the
type specific BigSpliterators class.
As the abstract methods in this class are used in inner loops, it is generally a good idea to
override the class as final as to encourage the JVM to inline them (or alternatively,
override the abstract methods as final).
- Since:
- 8.5.0
- Author:
- C. Sean Young <csyoung@google.com>
-
Nested Class Summary
Nested classes/interfaces inherited from interface java.util.Spliterator
Spliterator.OfDouble, Spliterator.OfInt, Spliterator.OfLong, Spliterator.OfPrimitive<T, T_CONS, T_SPLITR extends Spliterator.OfPrimitive<T,T_CONS, T_SPLITR>> -
Field Summary
Fields inherited from interface java.util.Spliterator
CONCURRENT, DISTINCT, IMMUTABLE, NONNULL, ORDERED, SIZED, SORTED, SUBSIZED -
Method Summary
Modifier and TypeMethodDescriptionintlongvoidforEachRemaining(Consumer<? super K> action) longskip(long n) Skips the given number of elements.booleantryAdvance(Consumer<? super K> action) trySplit()Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface java.util.Spliterator
getComparator, getExactSizeIfKnown, hasCharacteristics
-
Method Details
-
characteristics
public int characteristics() -
estimateSize
public long estimateSize() -
tryAdvance
-
forEachRemaining
-
skip
public long skip(long n) Description copied from interface:ObjectSpliteratorSkips the given number of elements.The effect of this call is exactly the same as that of calling
Spliterator.tryAdvance(java.util.function.Consumer<? super T>)forntimes (possibly stopping ifSpliterator.tryAdvance(java.util.function.Consumer<? super T>)returns false). The action called will do nothing; elements will be discarded.- Parameters:
n- the number of elements to skip.- Returns:
- the number of elements actually skipped.
- See Also:
-
trySplit
- Throws:
IndexOutOfBoundsException- if the return ofcomputeSplitPoint()was< posor> {@link #getMaxPos()}.- Implementation Specification:
- This implementation always returns a prefix of the elements, in order to comply with
the
Spliterator.ORDEREDproperty. This means this current iterator does not need to to update whatgetMaxPos()returns in response to this method (but it may do "book-keeping" on it based on binding strategy).The split point is computed by
computeSplitPoint(); see that method for details.
-