org.apache.hadoop.mapred
Enum JobInProgress.Counter
java.lang.Object
java.lang.Enum<JobInProgress.Counter>
org.apache.hadoop.mapred.JobInProgress.Counter
- All Implemented Interfaces:
- Serializable, Comparable<JobInProgress.Counter>
- Enclosing class:
- JobInProgress
public static enum JobInProgress.Counter
- extends Enum<JobInProgress.Counter>
NUM_FAILED_MAPS
public static final JobInProgress.Counter NUM_FAILED_MAPS
NUM_FAILED_REDUCES
public static final JobInProgress.Counter NUM_FAILED_REDUCES
TOTAL_LAUNCHED_MAPS
public static final JobInProgress.Counter TOTAL_LAUNCHED_MAPS
TOTAL_LAUNCHED_REDUCES
public static final JobInProgress.Counter TOTAL_LAUNCHED_REDUCES
OTHER_LOCAL_MAPS
public static final JobInProgress.Counter OTHER_LOCAL_MAPS
DATA_LOCAL_MAPS
public static final JobInProgress.Counter DATA_LOCAL_MAPS
RACK_LOCAL_MAPS
public static final JobInProgress.Counter RACK_LOCAL_MAPS
SLOTS_MILLIS_MAPS
public static final JobInProgress.Counter SLOTS_MILLIS_MAPS
SLOTS_MILLIS_REDUCES
public static final JobInProgress.Counter SLOTS_MILLIS_REDUCES
FALLOW_SLOTS_MILLIS_MAPS
public static final JobInProgress.Counter FALLOW_SLOTS_MILLIS_MAPS
FALLOW_SLOTS_MILLIS_REDUCES
public static final JobInProgress.Counter FALLOW_SLOTS_MILLIS_REDUCES
values
public static JobInProgress.Counter[] 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 (JobInProgress.Counter c : JobInProgress.Counter.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static JobInProgress.Counter 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