public static enum TCollector.Characteristics extends Enum<TCollector.Characteristics>
Enum Constant and Description |
---|
CONCURRENT |
IDENTITY_FINISH |
UNORDERED |
Modifier and Type | Method and Description |
---|---|
static TCollector.Characteristics |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TCollector.Characteristics[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TCollector.Characteristics CONCURRENT
public static final TCollector.Characteristics UNORDERED
public static final TCollector.Characteristics IDENTITY_FINISH
public static TCollector.Characteristics[] values()
for (TCollector.Characteristics c : TCollector.Characteristics.values()) System.out.println(c);
public static TCollector.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 © 2019. All rights reserved.