| Package | Description |
|---|---|
| java.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 Collector |
Collector.Characteristics.valueOf(String
Returns the enum constant of this type with the specified name.
|
static Collector |
Collector.Characteristics.values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
Set |
Collector.characteristics()
Returns a
Set of
Collector.Characteristics indicating the characteristics of this Collector.
|
| Modifier and Type | Method and Description |
|---|---|
static <T |
Collector.of(Supplier
Returns a new
Collector described by the given
supplier,
accumulator,
combiner, and
finisher functions.
|
static <T |
Collector.of(Supplier
Returns a new
Collector described by the given
supplier,
accumulator, and
combiner functions.
|