org.apache.hadoop.nfs.nfs3
Enum Nfs3Constant.WriteStableHow

java.lang.Object
  extended by java.lang.Enum<Nfs3Constant.WriteStableHow>
      extended by org.apache.hadoop.nfs.nfs3.Nfs3Constant.WriteStableHow
All Implemented Interfaces:
Serializable, Comparable<Nfs3Constant.WriteStableHow>
Enclosing class:
Nfs3Constant

public static enum Nfs3Constant.WriteStableHow
extends Enum<Nfs3Constant.WriteStableHow>

Write call flavors


Enum Constant Summary
DATA_SYNC
           
FILE_SYNC
           
UNSTABLE
           
 
Method Summary
static Nfs3Constant.WriteStableHow fromValue(int id)
           
 int getValue()
           
static Nfs3Constant.WriteStableHow valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Nfs3Constant.WriteStableHow[] 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

UNSTABLE

public static final Nfs3Constant.WriteStableHow UNSTABLE

DATA_SYNC

public static final Nfs3Constant.WriteStableHow DATA_SYNC

FILE_SYNC

public static final Nfs3Constant.WriteStableHow FILE_SYNC
Method Detail

values

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

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

valueOf

public static Nfs3Constant.WriteStableHow 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

getValue

public int getValue()

fromValue

public static Nfs3Constant.WriteStableHow fromValue(int id)


Copyright © 2009 The Apache Software Foundation