Uses of Interface
java.util.Spliterator.OfDouble
Package | Description |
---|---|
java.util |
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.
|
java.util.stream |
Classes to support functional-style operations on streams of elements, such
as map-reduce transformations on collections.
|
-
Uses of Spliterator.OfDouble in java.util
Classes in java.util that implement Spliterator.OfDouble Modifier and Type Class Description static class
Spliterators.AbstractDoubleSpliterator
An abstractSpliterator.OfDouble
that implementstrySplit
to permit limited parallelism.Methods in java.util that return Spliterator.OfDouble Modifier and Type Method Description static 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.Spliterator.OfDouble
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.Methods in java.util with parameters of type Spliterator.OfDouble Modifier and Type Method Description static PrimitiveIterator.OfDouble
Spliterators. iterator(Spliterator.OfDouble spliterator)
Creates anPrimitiveIterator.OfDouble
from aSpliterator.OfDouble
. -
Uses of Spliterator.OfDouble in java.util.stream
Methods in java.util.stream with parameters of type Spliterator.OfDouble Modifier and Type Method Description static DoubleStream
StreamSupport. doubleStream(Spliterator.OfDouble spliterator, boolean parallel)
Creates a new sequential or parallelDoubleStream
from aSpliterator.OfDouble
.Method parameters in java.util.stream with type arguments of type Spliterator.OfDouble Modifier and Type Method Description static DoubleStream
StreamSupport. doubleStream(Supplier<? extends Spliterator.OfDouble> supplier, int characteristics, boolean parallel)
Creates a new sequential or parallelDoubleStream
from aSupplier
ofSpliterator.OfDouble
.