org.apache.tez.dag.app.rm.node
Enum AMNodeEventType
java.lang.Object
java.lang.Enum<AMNodeEventType>
org.apache.tez.dag.app.rm.node.AMNodeEventType
- All Implemented Interfaces:
- Serializable, Comparable<AMNodeEventType>
public enum AMNodeEventType
- extends Enum<AMNodeEventType>
|
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. |
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
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.