@InterfaceAudience.Public public enum TezAppMasterStatus extends Enum<TezAppMasterStatus>
Enum Constant and Description |
---|
INITIALIZING
App Master initializing itself
|
READY
App Master ready to run DAG
|
RUNNING
App Master is running a DAG
|
SHUTDOWN
App Master has shut down or is in the process of shutting down.
|
Modifier and Type | Method and Description |
---|---|
static TezAppMasterStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TezAppMasterStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TezAppMasterStatus INITIALIZING
public static final TezAppMasterStatus READY
public static final TezAppMasterStatus RUNNING
public static final TezAppMasterStatus SHUTDOWN
public static TezAppMasterStatus[] values()
for (TezAppMasterStatus c : TezAppMasterStatus.values()) System.out.println(c);
public static TezAppMasterStatus 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 © 2024 Apache Software Foundation. All rights reserved.