public enum ReducerModeOption extends Enum<ReducerModeOption>
Enum Constant and Description |
---|
IDENTITY
one output per day
|
NULL
The null single reducer
|
Modifier and Type | Method and Description |
---|---|
static ReducerModeOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReducerModeOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReducerModeOption NULL
public static final ReducerModeOption IDENTITY
public static ReducerModeOption[] values()
for (ReducerModeOption c : ReducerModeOption.values()) System.out.println(c);
public static ReducerModeOption 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 null