org.apache.tez.dag.app.rm.node
Enum AMNodeEventType

java.lang.Object
  extended by java.lang.Enum<AMNodeEventType>
      extended by org.apache.tez.dag.app.rm.node.AMNodeEventType
All Implemented Interfaces:
Serializable, Comparable<AMNodeEventType>

public enum AMNodeEventType
extends Enum<AMNodeEventType>


Enum Constant Summary
N_CONTAINER_ALLOCATED
           
N_IGNORE_BLACKLISTING_DISABLED
           
N_IGNORE_BLACKLISTING_ENABLED
           
N_NODE_COUNT_UPDATED
           
N_NODE_WAS_BLACKLISTED
           
N_TA_ENDED
           
N_TA_SUCCEEDED
           
N_TURNED_HEALTHY
           
N_TURNED_UNHEALTHY
           
 
Method Summary
static AMNodeEventType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static AMNodeEventType[] 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

N_CONTAINER_ALLOCATED

public static final AMNodeEventType N_CONTAINER_ALLOCATED

N_TA_SUCCEEDED

public static final AMNodeEventType N_TA_SUCCEEDED

N_TA_ENDED

public static final AMNodeEventType N_TA_ENDED

N_TURNED_UNHEALTHY

public static final AMNodeEventType N_TURNED_UNHEALTHY

N_TURNED_HEALTHY

public static final AMNodeEventType N_TURNED_HEALTHY

N_NODE_COUNT_UPDATED

public static final AMNodeEventType N_NODE_COUNT_UPDATED

N_IGNORE_BLACKLISTING_ENABLED

public static final AMNodeEventType N_IGNORE_BLACKLISTING_ENABLED

N_IGNORE_BLACKLISTING_DISABLED

public static final AMNodeEventType N_IGNORE_BLACKLISTING_DISABLED

N_NODE_WAS_BLACKLISTED

public static final AMNodeEventType N_NODE_WAS_BLACKLISTED
Method Detail

values

public static AMNodeEventType[] 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 (AMNodeEventType c : AMNodeEventType.values())
    System.out.println(c);

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

valueOf

public static AMNodeEventType 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.