public static enum Collector.Characteristics extends Enum<Collector.Characteristics>
Enum Constant and Description |
---|
CONCURRENT |
IDENTITY_FINISH |
UNORDERED |
Modifier and Type | Method and Description |
---|---|
static Collector.Characteristics |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Collector.Characteristics[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
compareTo, createValueOfMap, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf, valueOf
$isInstance
public static final Collector.Characteristics CONCURRENT
public static final Collector.Characteristics IDENTITY_FINISH
public static final Collector.Characteristics UNORDERED
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 nameNullPointerException
- if the argument is nullCopyright © 2018. All rights reserved.