public static enum Collector.Characteristics extends Enum<Collector .Characteristics >
Collector, which can be used to optimize reduction implementations.
| Enum Constant and Description |
|---|
CONCURRENT
Indicates that this collector is
concurrent, meaning that the result container can support the accumulator function being called concurrently with the same result container from multiple threads.
|
IDENTITY_FINISH
Indicates that the finisher function is the identity function and can be elided.
|
UNORDERED
Indicates that the collection operation does not commit to preserving the encounter order of input elements.
|
| Modifier and Type | Method and Description |
|---|---|
static Collector |
valueOf(String
Returns the enum constant of this type with the specified name.
|
static Collector |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final Collector.Characteristics CONCURRENT
If a CONCURRENT collector is not also UNORDERED, then it should only be evaluated concurrently if applied to an unordered data source.
public static final Collector.Characteristics UNORDERED
Set.)
public static final Collector.Characteristics IDENTITY_FINISH
public static Collector.Characteristics [] values()
for (Collector.Characteristics c : Collector.Characteristics.values()) System.out.println(c);
public static Collector.Characteristics valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null