@InterfaceAudience.Private @InterfaceStability.Unstable public static enum TezTaskStatus.State extends Enum<TezTaskStatus.State>
| Enum Constant and Description | 
|---|
COMMIT_PENDING  | 
FAILED  | 
FAILED_UNCLEAN  | 
KILLED  | 
KILLED_UNCLEAN  | 
RUNNING  | 
SUCCEEDED  | 
UNASSIGNED  | 
| Modifier and Type | Method and Description | 
|---|---|
static TezTaskStatus.State | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static TezTaskStatus.State[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final TezTaskStatus.State RUNNING
public static final TezTaskStatus.State SUCCEEDED
public static final TezTaskStatus.State FAILED
public static final TezTaskStatus.State UNASSIGNED
public static final TezTaskStatus.State KILLED
public static final TezTaskStatus.State COMMIT_PENDING
public static final TezTaskStatus.State FAILED_UNCLEAN
public static final TezTaskStatus.State KILLED_UNCLEAN
public static TezTaskStatus.State[] values()
for (TezTaskStatus.State c : TezTaskStatus.State.values()) System.out.println(c);
public static TezTaskStatus.State 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.