@InterfaceAudience.Private @InterfaceStability.Unstable public static enum TezTaskStatus.Phase extends Enum<TezTaskStatus.Phase>
Enum Constant and Description |
---|
CLEANUP |
MAP |
REDUCE |
SHUFFLE |
SORT |
STARTING |
Modifier and Type | Method and Description |
---|---|
static TezTaskStatus.Phase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TezTaskStatus.Phase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TezTaskStatus.Phase STARTING
public static final TezTaskStatus.Phase MAP
public static final TezTaskStatus.Phase SHUFFLE
public static final TezTaskStatus.Phase SORT
public static final TezTaskStatus.Phase REDUCE
public static final TezTaskStatus.Phase CLEANUP
public static TezTaskStatus.Phase[] values()
for (TezTaskStatus.Phase c : TezTaskStatus.Phase.values()) System.out.println(c);
public static TezTaskStatus.Phase 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.