Package | Description |
---|---|
java8.lang |
Provides classes for some of the new static methods that were added in Java 8.
|
java8.util |
Provides some of the new
java.util classes and implementations
of static and default interface methods added in Java 8. |
java8.util.stream |
Classes to support functional-style operations on streams of elements, such
as map-reduce transformations on collections.
|
Class and Description |
---|
Spliterator
An object for traversing and partitioning elements of a source.
|
Class and Description |
---|
DoubleSummaryStatistics
A state object for collecting statistics such as count, min, max, sum, and
average.
|
IntSummaryStatistics
A state object for collecting statistics such as count, min, max, sum, and
average.
|
LongSummaryStatistics
A state object for collecting statistics such as count, min, max, sum, and
average.
|
Optional
A container object which may or may not contain a non-
null value. |
OptionalDouble
A container object which may or may not contain a
double value. |
OptionalInt
A container object which may or may not contain an
int value. |
OptionalLong
A container object which may or may not contain a
long value. |
PrimitiveIterator
A base type for primitive specializations of
Iterator . |
PrimitiveIterator.OfDouble
An Iterator specialized for
double values. |
PrimitiveIterator.OfInt
An Iterator specialized for
int values. |
PrimitiveIterator.OfLong
An Iterator specialized for
long values. |
Spliterator
An object for traversing and partitioning elements of a source.
|
Spliterator.OfDouble
A Spliterator specialized for
double values. |
Spliterator.OfInt
A Spliterator specialized for
int values. |
Spliterator.OfLong
A Spliterator specialized for
long values. |
Spliterator.OfPrimitive
A Spliterator specialized for primitive values.
|
SplittableRandom
A generator of uniform pseudorandom values applicable for use in
(among other contexts) isolated parallel computations that may
generate subtasks.
|
StringJoiner
StringJoiner is used to construct a sequence of characters separated
by a delimiter and optionally starting with a supplied prefix
and ending with a supplied suffix. |
Class and Description |
---|
DoubleSummaryStatistics
A state object for collecting statistics such as count, min, max, sum, and
average.
|
IntSummaryStatistics
A state object for collecting statistics such as count, min, max, sum, and
average.
|
LongSummaryStatistics
A state object for collecting statistics such as count, min, max, sum, and
average.
|
Optional
A container object which may or may not contain a non-
null value. |
OptionalDouble
A container object which may or may not contain a
double value. |
OptionalInt
A container object which may or may not contain an
int value. |
OptionalLong
A container object which may or may not contain a
long value. |
PrimitiveIterator.OfDouble
An Iterator specialized for
double values. |
PrimitiveIterator.OfInt
An Iterator specialized for
int values. |
PrimitiveIterator.OfLong
An Iterator specialized for
long values. |
Spliterator
An object for traversing and partitioning elements of a source.
|
Spliterator.OfDouble
A Spliterator specialized for
double values. |
Spliterator.OfInt
A Spliterator specialized for
int values. |
Spliterator.OfLong
A Spliterator specialized for
long values. |
Copyright © 2016. All rights reserved.