Package | Description |
---|---|
java8.util |
Provides some of the new
java.util classes and implementations
of static and default interface methods added in Java 8. |
Modifier and Type | Interface and Description |
---|---|
static interface |
Spliterator.OfPrimitive<T,T_CONS,T_SPLITR extends Spliterator.OfPrimitive<T,T_CONS,T_SPLITR>>
A Spliterator specialized for primitive values.
|
Modifier and Type | Interface and Description |
---|---|
static interface |
Spliterator.OfDouble
A Spliterator specialized for
double values. |
static interface |
Spliterator.OfInt
A Spliterator specialized for
int values. |
static interface |
Spliterator.OfLong
A Spliterator specialized for
long values. |
Modifier and Type | Class and Description |
---|---|
static class |
Spliterators.AbstractDoubleSpliterator
An abstract
Spliterator.OfDouble that implements
trySplit to permit limited parallelism. |
static class |
Spliterators.AbstractIntSpliterator
An abstract
Spliterator.OfInt that implements trySplit to
permit limited parallelism. |
static class |
Spliterators.AbstractLongSpliterator
An abstract
Spliterator.OfLong that implements trySplit
to permit limited parallelism. |
Modifier and Type | Method and Description |
---|---|
static <T,T_CONS,T_SPLITR extends Spliterator.OfPrimitive<T,T_CONS,T_SPLITR>> |
Spliterators.OfPrimitive.forEachRemaining(Spliterator.OfPrimitive<T,T_CONS,T_SPLITR> this_,
T_CONS action)
Performs the given action for each remaining element, sequentially in
the current thread, until all elements have been processed or the
action throws an exception.
|
Modifier and Type | Method and Description |
---|---|
static <T,T_CONS,T_SPLITR extends Spliterator.OfPrimitive<T,T_CONS,T_SPLITR>> |
Spliterators.OfPrimitive.forEachRemaining(Spliterator.OfPrimitive<T,T_CONS,T_SPLITR> this_,
T_CONS action)
Performs the given action for each remaining element, sequentially in
the current thread, until all elements have been processed or the
action throws an exception.
|