org.apache.hadoop.fs.http.client
Enum HttpFSFileSystem.GetOpValues

java.lang.Object
  extended by java.lang.Enum<HttpFSFileSystem.GetOpValues>
      extended by org.apache.hadoop.fs.http.client.HttpFSFileSystem.GetOpValues
All Implemented Interfaces:
Serializable, Comparable<HttpFSFileSystem.GetOpValues>
Enclosing class:
HttpFSFileSystem

public static enum HttpFSFileSystem.GetOpValues
extends Enum<HttpFSFileSystem.GetOpValues>

Get operations.


Enum Constant Summary
GETCONTENTSUMMARY
           
GETDELEGATIONTOKEN
           
GETFILEBLOCKLOCATIONS
           
GETFILECHECKSUM
           
GETFILESTATUS
           
GETHOMEDIRECTORY
           
INSTRUMENTATION
           
LISTSTATUS
           
OPEN
           
 
Method Summary
static HttpFSFileSystem.GetOpValues valueOf(String name)
          Returns the enum constant of this type with the specified name.
static HttpFSFileSystem.GetOpValues[] 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

OPEN

public static final HttpFSFileSystem.GetOpValues OPEN

GETFILESTATUS

public static final HttpFSFileSystem.GetOpValues GETFILESTATUS

LISTSTATUS

public static final HttpFSFileSystem.GetOpValues LISTSTATUS

GETHOMEDIRECTORY

public static final HttpFSFileSystem.GetOpValues GETHOMEDIRECTORY

GETCONTENTSUMMARY

public static final HttpFSFileSystem.GetOpValues GETCONTENTSUMMARY

GETFILECHECKSUM

public static final HttpFSFileSystem.GetOpValues GETFILECHECKSUM

GETDELEGATIONTOKEN

public static final HttpFSFileSystem.GetOpValues GETDELEGATIONTOKEN

GETFILEBLOCKLOCATIONS

public static final HttpFSFileSystem.GetOpValues GETFILEBLOCKLOCATIONS

INSTRUMENTATION

public static final HttpFSFileSystem.GetOpValues INSTRUMENTATION
Method Detail

values

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

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

valueOf

public static HttpFSFileSystem.GetOpValues 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 © 2012 Apache Software Foundation. All Rights Reserved.