| Package | Description |
|---|---|
| java9.util |
Provides some of the new
java.util classes and implementations of
static and default interface methods added in Java 8 and, in addition, the
JEP 269: Convenience Factory
Methods for Collections that were introduced in Java 9. |
| java9.util.stream |
Classes to support functional-style operations on streams of elements, such
as map-reduce transformations on collections.
|
| Modifier and Type | Method and Description |
|---|---|
static PrimitiveIterator.OfLong |
Spliterators.iterator(Spliterator.OfLong spliterator)
Creates an
PrimitiveIterator.OfLong from a
Spliterator.OfLong. |
| Modifier and Type | Method and Description |
|---|---|
static Spliterator.OfLong |
Spliterators.spliterator(PrimitiveIterator.OfLong iterator,
long size,
int characteristics)
Creates a
Spliterator.OfLong using a given
LongStream.LongIterator as the source of elements, and with a
given initially reported size. |
static Spliterator.OfLong |
Spliterators.spliteratorUnknownSize(PrimitiveIterator.OfLong iterator,
int characteristics)
Creates a
Spliterator.OfLong using a given
LongStream.LongIterator as the source of elements, with no
initial size estimate. |
| Modifier and Type | Method and Description |
|---|---|
PrimitiveIterator.OfLong |
LongStream.iterator() |
Copyright © 2018. All rights reserved.