@InterfaceAudience.Public @InterfaceStability.Evolving public enum DAGCounter extends Enum<DAGCounter>
| Enum Constant and Description | 
|---|
DATA_LOCAL_TASKS  | 
FALLOW_SLOTS_MILLIS_TASKS  | 
NUM_FAILED_TASKS  | 
NUM_FAILED_UBERTASKS  | 
NUM_KILLED_TASKS  | 
NUM_SUCCEEDED_TASKS  | 
NUM_UBER_SUBTASKS  | 
OTHER_LOCAL_TASKS  | 
RACK_LOCAL_TASKS  | 
SLOTS_MILLIS_TASKS  | 
TOTAL_LAUNCHED_TASKS  | 
TOTAL_LAUNCHED_UBERTASKS  | 
| Modifier and Type | Method and Description | 
|---|---|
static DAGCounter | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static DAGCounter[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final DAGCounter NUM_FAILED_TASKS
public static final DAGCounter NUM_KILLED_TASKS
public static final DAGCounter NUM_SUCCEEDED_TASKS
public static final DAGCounter TOTAL_LAUNCHED_TASKS
public static final DAGCounter OTHER_LOCAL_TASKS
public static final DAGCounter DATA_LOCAL_TASKS
public static final DAGCounter RACK_LOCAL_TASKS
public static final DAGCounter SLOTS_MILLIS_TASKS
public static final DAGCounter FALLOW_SLOTS_MILLIS_TASKS
public static final DAGCounter TOTAL_LAUNCHED_UBERTASKS
public static final DAGCounter NUM_UBER_SUBTASKS
public static final DAGCounter NUM_FAILED_UBERTASKS
public static DAGCounter[] values()
for (DAGCounter c : DAGCounter.values()) System.out.println(c);
public static DAGCounter 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 © 2015 Apache Software Foundation. All rights reserved.