org.apache.tez.dag.history
Enum HistoryEventType

java.lang.Object
  extended by java.lang.Enum<HistoryEventType>
      extended by org.apache.tez.dag.history.HistoryEventType
All Implemented Interfaces:
Serializable, Comparable<HistoryEventType>

public enum HistoryEventType
extends Enum<HistoryEventType>


Enum Constant Summary
AM_LAUNCHED
           
AM_STARTED
           
CONTAINER_LAUNCHED
           
DAG_COMMIT_STARTED
           
DAG_FINISHED
           
DAG_INITIALIZED
           
DAG_STARTED
           
DAG_SUBMITTED
           
TASK_ATTEMPT_FINISHED
           
TASK_ATTEMPT_STARTED
           
TASK_FINISHED
           
TASK_STARTED
           
VERTEX_COMMIT_STARTED
           
VERTEX_DATA_MOVEMENT_EVENTS_GENERATED
           
VERTEX_FINISHED
           
VERTEX_GROUP_COMMIT_FINISHED
           
VERTEX_GROUP_COMMIT_STARTED
           
VERTEX_INITIALIZED
           
VERTEX_PARALLELISM_UPDATED
           
VERTEX_STARTED
           
 
Method Summary
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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

AM_LAUNCHED

public static final HistoryEventType AM_LAUNCHED

AM_STARTED

public static final HistoryEventType AM_STARTED

DAG_SUBMITTED

public static final HistoryEventType DAG_SUBMITTED

DAG_INITIALIZED

public static final HistoryEventType DAG_INITIALIZED

DAG_STARTED

public static final HistoryEventType DAG_STARTED

DAG_FINISHED

public static final HistoryEventType DAG_FINISHED

VERTEX_INITIALIZED

public static final HistoryEventType VERTEX_INITIALIZED

VERTEX_STARTED

public static final HistoryEventType VERTEX_STARTED

VERTEX_PARALLELISM_UPDATED

public static final HistoryEventType VERTEX_PARALLELISM_UPDATED

VERTEX_FINISHED

public static final HistoryEventType VERTEX_FINISHED

TASK_STARTED

public static final HistoryEventType TASK_STARTED

TASK_FINISHED

public static final HistoryEventType TASK_FINISHED

TASK_ATTEMPT_STARTED

public static final HistoryEventType TASK_ATTEMPT_STARTED

TASK_ATTEMPT_FINISHED

public static final HistoryEventType TASK_ATTEMPT_FINISHED

CONTAINER_LAUNCHED

public static final HistoryEventType CONTAINER_LAUNCHED

VERTEX_DATA_MOVEMENT_EVENTS_GENERATED

public static final HistoryEventType VERTEX_DATA_MOVEMENT_EVENTS_GENERATED

DAG_COMMIT_STARTED

public static final HistoryEventType DAG_COMMIT_STARTED

VERTEX_COMMIT_STARTED

public static final HistoryEventType VERTEX_COMMIT_STARTED

VERTEX_GROUP_COMMIT_STARTED

public static final HistoryEventType VERTEX_GROUP_COMMIT_STARTED

VERTEX_GROUP_COMMIT_FINISHED

public static final HistoryEventType VERTEX_GROUP_COMMIT_FINISHED
Method Detail

values

public static HistoryEventType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (HistoryEventType c : HistoryEventType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static HistoryEventType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2014 Apache Software Foundation. All rights reserved.