This project has retired. For details please refer to its Attic page.
MRJob.State (Apache Crunch 0.10.0 API)

org.apache.crunch.impl.mr
Enum MRJob.State

java.lang.Object
  extended by java.lang.Enum<MRJob.State>
      extended by org.apache.crunch.impl.mr.MRJob.State
All Implemented Interfaces:
Serializable, Comparable<MRJob.State>
Enclosing interface:
MRJob

public static enum MRJob.State
extends Enum<MRJob.State>

A job will be in one of the following states.


Enum Constant Summary
DEPENDENT_FAILED
           
FAILED
           
READY
           
RUNNING
           
SUCCESS
           
WAITING
           
 
Method Summary
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.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

SUCCESS

public static final MRJob.State SUCCESS

WAITING

public static final MRJob.State WAITING

RUNNING

public static final MRJob.State RUNNING

READY

public static final MRJob.State READY

FAILED

public static final MRJob.State FAILED

DEPENDENT_FAILED

public static final MRJob.State DEPENDENT_FAILED
Method Detail

values

public static MRJob.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 (MRJob.State c : MRJob.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 MRJob.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 © 2014 The Apache Software Foundation. All Rights Reserved.