org.apache.hadoop.dfs
Enum DatanodeInfo.AdminStates

java.lang.Object
  extended by java.lang.Enum<DatanodeInfo.AdminStates>
      extended by org.apache.hadoop.dfs.DatanodeInfo.AdminStates
All Implemented Interfaces:
Serializable, Comparable<DatanodeInfo.AdminStates>
Enclosing class:
DatanodeInfo

public static enum DatanodeInfo.AdminStates
extends Enum<DatanodeInfo.AdminStates>


Enum Constant Summary
DECOMMISSION_INPROGRESS
           
DECOMMISSIONED
           
NORMAL
           
 
Method Summary
static DatanodeInfo.AdminStates valueOf(String name)
          Returns the enum constant of this type with the specified name.
static DatanodeInfo.AdminStates[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NORMAL

public static final DatanodeInfo.AdminStates NORMAL

DECOMMISSION_INPROGRESS

public static final DatanodeInfo.AdminStates DECOMMISSION_INPROGRESS

DECOMMISSIONED

public static final DatanodeInfo.AdminStates DECOMMISSIONED
Method Detail

values

public static final DatanodeInfo.AdminStates[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(DatanodeInfo.AdminStates c : DatanodeInfo.AdminStates.values())
        System.out.println(c);

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

valueOf

public static DatanodeInfo.AdminStates 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


Copyright © 2008 The Apache Software Foundation