public enum HistoryEventType extends Enum<HistoryEventType>
| Modifier and Type | Method and Description |
|---|---|
static HistoryEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HistoryEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HistoryEventType APP_LAUNCHED
public static final HistoryEventType AM_LAUNCHED
public static final HistoryEventType AM_STARTED
public static final HistoryEventType DAG_SUBMITTED
public static final HistoryEventType DAG_INITIALIZED
public static final HistoryEventType DAG_STARTED
public static final HistoryEventType DAG_FINISHED
public static final HistoryEventType VERTEX_INITIALIZED
public static final HistoryEventType VERTEX_STARTED
public static final HistoryEventType VERTEX_PARALLELISM_UPDATED
public static final HistoryEventType VERTEX_FINISHED
public static final HistoryEventType TASK_STARTED
public static final HistoryEventType TASK_FINISHED
public static final HistoryEventType TASK_ATTEMPT_STARTED
public static final HistoryEventType TASK_ATTEMPT_FINISHED
public static final HistoryEventType CONTAINER_LAUNCHED
public static final HistoryEventType CONTAINER_STOPPED
public static final HistoryEventType VERTEX_DATA_MOVEMENT_EVENTS_GENERATED
public static final HistoryEventType DAG_COMMIT_STARTED
public static final HistoryEventType VERTEX_COMMIT_STARTED
public static final HistoryEventType VERTEX_GROUP_COMMIT_STARTED
public static final HistoryEventType VERTEX_GROUP_COMMIT_FINISHED
public static final HistoryEventType DAG_RECOVERED
public static HistoryEventType[] values()
for (HistoryEventType c : HistoryEventType.values()) System.out.println(c);
public static HistoryEventType 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.