cascading.stats.hadoop
Enum HadoopSliceStats.Kind

java.lang.Object
  extended by java.lang.Enum<HadoopSliceStats.Kind>
      extended by cascading.stats.hadoop.HadoopSliceStats.Kind
All Implemented Interfaces:
Serializable, Comparable<HadoopSliceStats.Kind>
Enclosing class:
HadoopSliceStats

public static enum HadoopSliceStats.Kind
extends Enum<HadoopSliceStats.Kind>


Enum Constant Summary
CLEANUP
           
MAPPER
           
REDUCER
           
SETUP
           
 
Method Summary
static HadoopSliceStats.Kind valueOf(String name)
          Returns the enum constant of this type with the specified name.
static HadoopSliceStats.Kind[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

SETUP

public static final HadoopSliceStats.Kind SETUP

MAPPER

public static final HadoopSliceStats.Kind MAPPER

REDUCER

public static final HadoopSliceStats.Kind REDUCER

CLEANUP

public static final HadoopSliceStats.Kind CLEANUP
Method Detail

values

public static HadoopSliceStats.Kind[] 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 (HadoopSliceStats.Kind c : HadoopSliceStats.Kind.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static HadoopSliceStats.Kind 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 © 2007-2014 Concurrent, Inc. All Rights Reserved.