public enum DAGEventType extends Enum<DAGEventType>
| Enum Constant and Description |
|---|
DAG_COUNTER_UPDATE |
DAG_DIAGNOSTIC_UPDATE |
DAG_INIT |
DAG_KILL |
DAG_RECOVER |
DAG_SCHEDULER_UPDATE |
DAG_START |
DAG_VERTEX_COMPLETED |
DAG_VERTEX_RERUNNING |
INTERNAL_ERROR |
| Modifier and Type | Method and Description |
|---|---|
static DAGEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DAGEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DAGEventType DAG_KILL
public static final DAGEventType DAG_INIT
public static final DAGEventType DAG_START
public static final DAGEventType DAG_VERTEX_COMPLETED
public static final DAGEventType DAG_VERTEX_RERUNNING
public static final DAGEventType DAG_SCHEDULER_UPDATE
public static final DAGEventType DAG_DIAGNOSTIC_UPDATE
public static final DAGEventType INTERNAL_ERROR
public static final DAGEventType DAG_COUNTER_UPDATE
public static final DAGEventType DAG_RECOVER
public static DAGEventType[] values()
for (DAGEventType c : DAGEventType.values()) System.out.println(c);
public static DAGEventType 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.