- java.lang.Object
- 
- java.util.Spliterators.AbstractDoubleSpliterator
 
- 
- All Implemented Interfaces:
- Spliterator<Double>,- Spliterator.OfDouble,- Spliterator.OfPrimitive<Double,DoubleConsumer,Spliterator.OfDouble>
 - Enclosing class:
- Spliterators
 
 
 public abstract static class Spliterators.AbstractDoubleSpliterator extends Object implements Spliterator.OfDouble An abstractSpliterator.OfDoublethat implementstrySplitto permit limited parallelism.To implement a spliterator an extending class need only implement tryAdvance. The extending class should overrideforEachRemainingif it can provide a more performant implementation.- API Note:
- This class is a useful aid for creating a spliterator when it is not
 possible or difficult to efficiently partition elements in a manner
 allowing balanced parallel computation.
 An alternative to using this class, that also permits limited parallelism, is to create a spliterator from an iterator (see Spliterators.spliterator(java.util.PrimitiveIterator.OfDouble, long, int). Depending on the circumstances using an iterator may be easier or more convenient than extending this class. For example, if there is already an iterator available to use then there is no need to extend this class.
- Since:
- 1.8
- See Also:
- Spliterators.spliterator(java.util.PrimitiveIterator.OfDouble, long, int)
 
- 
- 
Nested Class Summary- 
Nested classes/interfaces inherited from interface java.util.SpliteratorSpliterator.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.SpliteratorCONCURRENT, DISTINCT, IMMUTABLE, NONNULL, ORDERED, SIZED, SORTED, SUBSIZED
 
- 
 - 
Constructor SummaryConstructors Modifier Constructor Description protectedAbstractDoubleSpliterator(long est, int additionalCharacteristics)Creates a spliterator reporting the given estimated size and characteristics.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description intcharacteristics()Returns a set of characteristics of this Spliterator and its elements.longestimateSize()Returns an estimate of the number of elements that would be encountered by aSpliterator.forEachRemaining(java.util.function.Consumer<? super T>)traversal, or returnsLong.MAX_VALUEif infinite, unknown, or too expensive to compute.Spliterator.OfDoubletrySplit()If this spliterator can be partitioned, returns a Spliterator covering elements, that will, upon return from this method, not be covered by this Spliterator.- 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface java.util.SpliteratorgetComparator, getExactSizeIfKnown, hasCharacteristics
 - 
Methods inherited from interface java.util.Spliterator.OfDoubleforEachRemaining, forEachRemaining, tryAdvance, tryAdvance
 
- 
 
- 
- 
- 
Constructor Detail- 
AbstractDoubleSpliteratorprotected AbstractDoubleSpliterator(long est, int additionalCharacteristics)Creates a spliterator reporting the given estimated size and characteristics.- Parameters:
- est- the estimated size of this spliterator if known, otherwise- Long.MAX_VALUE.
- additionalCharacteristics- properties of this spliterator's source or elements. If- SIZEDis reported then this spliterator will additionally report- SUBSIZED.
 
 
- 
 - 
Method Detail- 
trySplitpublic Spliterator.OfDouble trySplit() If this spliterator can be partitioned, returns a Spliterator covering elements, that will, upon return from this method, not be covered by this Spliterator.If this Spliterator is Spliterator.ORDERED, the returned Spliterator must cover a strict prefix of the elements.Unless this Spliterator covers an infinite number of elements, repeated calls to trySplit()must eventually returnnull. Upon non-null return:- the value reported for estimateSize()before splitting, must, after splitting, be greater than or equal toestimateSize()for this and the returned Spliterator; and
- if this Spliterator is SUBSIZED, thenestimateSize()for this spliterator before splitting must be equal to the sum ofestimateSize()for this and the returned Spliterator after splitting.
 This method may return nullfor any reason, including emptiness, inability to split after traversal has commenced, data structure constraints, and efficiency considerations. This implementation permits limited parallelism.- Specified by:
- trySplitin interface- Spliterator<Double>
- Specified by:
- trySplitin interface- Spliterator.OfDouble
- Specified by:
- trySplitin interface- Spliterator.OfPrimitive<Double,DoubleConsumer,Spliterator.OfDouble>
- Returns:
- a Spliteratorcovering some portion of the elements, ornullif this spliterator cannot be split
 
- the value reported for 
 - 
estimateSizepublic long estimateSize() Returns an estimate of the number of elements that would be encountered by aSpliterator.forEachRemaining(java.util.function.Consumer<? super T>)traversal, or returnsLong.MAX_VALUEif infinite, unknown, or too expensive to compute.If this Spliterator is Spliterator.SIZEDand has not yet been partially traversed or split, or this Spliterator isSpliterator.SUBSIZEDand has not yet been partially traversed, this estimate must be an accurate count of elements that would be encountered by a complete traversal. Otherwise, this estimate may be arbitrarily inaccurate, but must decrease as specified across invocations ofSpliterator.trySplit().- Specified by:
- estimateSizein interface- Spliterator<Double>
- Implementation Requirements:
- This implementation returns the estimated size as reported when created and, if the estimate size is known, decreases in size when split.
- Returns:
- the estimated size, or Long.MAX_VALUEif infinite, unknown, or too expensive to compute.
 
 - 
characteristicspublic int characteristics() Returns a set of characteristics of this Spliterator and its elements. The result is represented as ORed values fromSpliterator.ORDERED,Spliterator.DISTINCT,Spliterator.SORTED,Spliterator.SIZED,Spliterator.NONNULL,Spliterator.IMMUTABLE,Spliterator.CONCURRENT,Spliterator.SUBSIZED. Repeated calls tocharacteristics()on a given spliterator, prior to or in-between calls totrySplit, should always return the same result.If a Spliterator reports an inconsistent set of characteristics (either those returned from a single invocation or across multiple invocations), no guarantees can be made about any computation using this Spliterator. - Specified by:
- characteristicsin interface- Spliterator<Double>
- Implementation Requirements:
- This implementation returns the characteristics as reported when created.
- Returns:
- a representation of characteristics
 
 
- 
 
-