org.apache.hadoop.mapreduce.lib.jobcontrol
Enum ControlledJob.State
java.lang.Object
java.lang.Enum<ControlledJob.State>
org.apache.hadoop.mapreduce.lib.jobcontrol.ControlledJob.State
- All Implemented Interfaces:
- Serializable, Comparable<ControlledJob.State>
- Enclosing class:
- ControlledJob
public static enum ControlledJob.State
- extends Enum<ControlledJob.State>
SUCCESS
public static final ControlledJob.State SUCCESS
WAITING
public static final ControlledJob.State WAITING
RUNNING
public static final ControlledJob.State RUNNING
READY
public static final ControlledJob.State READY
FAILED
public static final ControlledJob.State FAILED
DEPENDENT_FAILED
public static final ControlledJob.State DEPENDENT_FAILED
values
public static ControlledJob.State[] 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 (ControlledJob.State c : ControlledJob.State.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static ControlledJob.State 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 © 2009 The Apache Software Foundation