public enum EnumCounter extends Enum<EnumCounter>
Enum Constant and Description |
---|
CHECKPOINT_BYTES |
CHECKPOINT_MS |
INPUTKEY |
INPUTVALUE |
OUTPUTRECORDS |
Modifier and Type | Method and Description |
---|---|
static EnumCounter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnumCounter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCounter INPUTKEY
public static final EnumCounter INPUTVALUE
public static final EnumCounter OUTPUTRECORDS
public static final EnumCounter CHECKPOINT_BYTES
public static final EnumCounter CHECKPOINT_MS
public static EnumCounter[] values()
for (EnumCounter c : EnumCounter.values()) System.out.println(c);
public static EnumCounter 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 © 2008–2021 Apache Software Foundation. All rights reserved.