public enum PhoenixJobCounters extends Enum<PhoenixJobCounters>
Enum Constant and Description |
---|
FAILED_RECORDS |
INPUT_RECORDS |
OUTPUT_RECORDS |
Modifier and Type | Method and Description |
---|---|
static PhoenixJobCounters |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PhoenixJobCounters[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PhoenixJobCounters INPUT_RECORDS
public static final PhoenixJobCounters FAILED_RECORDS
public static final PhoenixJobCounters OUTPUT_RECORDS
public static PhoenixJobCounters[] values()
for (PhoenixJobCounters c : PhoenixJobCounters.values()) System.out.println(c);
public static PhoenixJobCounters 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 © 2017 Apache Software Foundation. All Rights Reserved.