public static enum MRJob.State extends Enum<MRJob.State>
| Enum Constant and Description | 
|---|
| DEPENDENT_FAILED | 
| FAILED | 
| READY | 
| RUNNING | 
| SUCCESS | 
| WAITING | 
| Modifier and Type | Method and Description | 
|---|---|
| static MRJob.State | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static MRJob.State[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final MRJob.State SUCCESS
public static final MRJob.State WAITING
public static final MRJob.State RUNNING
public static final MRJob.State READY
public static final MRJob.State FAILED
public static final MRJob.State DEPENDENT_FAILED
public static MRJob.State[] values()
for (MRJob.State c : MRJob.State.values()) System.out.println(c);
public static MRJob.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 © 2017 The Apache Software Foundation. All rights reserved.