public enum DAGAppMasterState extends Enum<DAGAppMasterState>
| Enum Constant and Description |
|---|
ERROR |
FAILED |
IDLE |
INITED |
KILLED |
NEW |
RECOVERING |
RUNNING |
SUCCEEDED |
| Modifier and Type | Method and Description |
|---|---|
static DAGAppMasterState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DAGAppMasterState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DAGAppMasterState NEW
public static final DAGAppMasterState INITED
public static final DAGAppMasterState RECOVERING
public static final DAGAppMasterState IDLE
public static final DAGAppMasterState RUNNING
public static final DAGAppMasterState SUCCEEDED
public static final DAGAppMasterState FAILED
public static final DAGAppMasterState KILLED
public static final DAGAppMasterState ERROR
public static DAGAppMasterState[] values()
for (DAGAppMasterState c : DAGAppMasterState.values()) System.out.println(c);
public static DAGAppMasterState 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 © 2020 Apache Software Foundation. All rights reserved.