Uses of Interface
java.util.Spliterator.OfDouble
Package
Description
Contains the collections framework, some internationalization support classes,
a service loader, properties, random number generation, string parsing
and scanning classes, base64 encoding and decoding, a bit array, and
several miscellaneous utility classes.
Classes to support functional-style operations on streams of elements, such
as map-reduce transformations on collections.
-
Uses of Spliterator.OfDouble in java.util
Modifier and TypeClassDescriptionstatic class
An abstractSpliterator.OfDouble
that implementstrySplit
to permit limited parallelism.Modifier and TypeMethodDescriptionstatic Spliterator.OfDouble
Spliterators.emptyDoubleSpliterator()
Creates an emptySpliterator.OfDouble
static Spliterator.OfDouble
Arrays.spliterator
(double[] array) Returns aSpliterator.OfDouble
covering all of the specified array.static Spliterator.OfDouble
Arrays.spliterator
(double[] array, int startInclusive, int endExclusive) Returns aSpliterator.OfDouble
covering the specified range of the specified array.static Spliterator.OfDouble
Spliterators.spliterator
(double[] array, int additionalCharacteristics) Creates aSpliterator.OfDouble
covering the elements of a given array, using a customized set of spliterator characteristics.static Spliterator.OfDouble
Spliterators.spliterator
(double[] array, int fromIndex, int toIndex, int additionalCharacteristics) Creates aSpliterator.OfDouble
covering a range of elements of a given array, using a customized set of spliterator characteristics.static Spliterator.OfDouble
Spliterators.spliterator
(PrimitiveIterator.OfDouble iterator, long size, int characteristics) Creates aSpliterator.OfDouble
using a givenDoubleStream.DoubleIterator
as the source of elements, and with a given initially reported size.static Spliterator.OfDouble
Spliterators.spliteratorUnknownSize
(PrimitiveIterator.OfDouble iterator, int characteristics) Creates aSpliterator.OfDouble
using a givenDoubleStream.DoubleIterator
as the source of elements, with no initial size estimate.Spliterators.AbstractDoubleSpliterator.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.Modifier and TypeMethodDescriptionstatic PrimitiveIterator.OfDouble
Spliterators.iterator
(Spliterator.OfDouble spliterator) Creates anPrimitiveIterator.OfDouble
from aSpliterator.OfDouble
. -
Uses of Spliterator.OfDouble in java.util.stream
Modifier and TypeMethodDescriptionstatic DoubleStream
StreamSupport.doubleStream
(Spliterator.OfDouble spliterator, boolean parallel) Creates a new sequential or parallelDoubleStream
from aSpliterator.OfDouble
.Modifier and TypeMethodDescriptionstatic DoubleStream
StreamSupport.doubleStream
(Supplier<? extends Spliterator.OfDouble> supplier, int characteristics, boolean parallel) Creates a new sequential or parallelDoubleStream
from aSupplier
ofSpliterator.OfDouble
.