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

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

@InterfaceAudience.Private
public static enum HttpFSFileSystem.Operation
extends Enum<HttpFSFileSystem.Operation>


Enum Constant Summary
APPEND
           
CONCAT
           
CREATE
           
DELETE
           
GETACLSTATUS
           
GETCONTENTSUMMARY
           
GETFILEBLOCKLOCATIONS
           
GETFILECHECKSUM
           
GETFILESTATUS
           
GETHOMEDIRECTORY
           
GETXATTRS
           
INSTRUMENTATION
           
LISTSTATUS
           
LISTXATTRS
           
MKDIRS
           
MODIFYACLENTRIES
           
OPEN
           
REMOVEACL
           
REMOVEACLENTRIES
           
REMOVEDEFAULTACL
           
REMOVEXATTR
           
RENAME
           
SETACL
           
SETOWNER
           
SETPERMISSION
           
SETREPLICATION
           
SETTIMES
           
SETXATTR
           
 
Method Summary
 String getMethod()
           
static HttpFSFileSystem.Operation valueOf(String name)
          Returns the enum constant of this type with the specified name.
static HttpFSFileSystem.Operation[] 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.Operation OPEN

GETFILESTATUS

public static final HttpFSFileSystem.Operation GETFILESTATUS

LISTSTATUS

public static final HttpFSFileSystem.Operation LISTSTATUS

GETHOMEDIRECTORY

public static final HttpFSFileSystem.Operation GETHOMEDIRECTORY

GETCONTENTSUMMARY

public static final HttpFSFileSystem.Operation GETCONTENTSUMMARY

GETFILECHECKSUM

public static final HttpFSFileSystem.Operation GETFILECHECKSUM

GETFILEBLOCKLOCATIONS

public static final HttpFSFileSystem.Operation GETFILEBLOCKLOCATIONS

INSTRUMENTATION

public static final HttpFSFileSystem.Operation INSTRUMENTATION

GETACLSTATUS

public static final HttpFSFileSystem.Operation GETACLSTATUS

APPEND

public static final HttpFSFileSystem.Operation APPEND

CONCAT

public static final HttpFSFileSystem.Operation CONCAT

CREATE

public static final HttpFSFileSystem.Operation CREATE

MKDIRS

public static final HttpFSFileSystem.Operation MKDIRS

RENAME

public static final HttpFSFileSystem.Operation RENAME

SETOWNER

public static final HttpFSFileSystem.Operation SETOWNER

SETPERMISSION

public static final HttpFSFileSystem.Operation SETPERMISSION

SETREPLICATION

public static final HttpFSFileSystem.Operation SETREPLICATION

SETTIMES

public static final HttpFSFileSystem.Operation SETTIMES

MODIFYACLENTRIES

public static final HttpFSFileSystem.Operation MODIFYACLENTRIES

REMOVEACLENTRIES

public static final HttpFSFileSystem.Operation REMOVEACLENTRIES

REMOVEDEFAULTACL

public static final HttpFSFileSystem.Operation REMOVEDEFAULTACL

REMOVEACL

public static final HttpFSFileSystem.Operation REMOVEACL

SETACL

public static final HttpFSFileSystem.Operation SETACL

DELETE

public static final HttpFSFileSystem.Operation DELETE

SETXATTR

public static final HttpFSFileSystem.Operation SETXATTR

GETXATTRS

public static final HttpFSFileSystem.Operation GETXATTRS

REMOVEXATTR

public static final HttpFSFileSystem.Operation REMOVEXATTR

LISTXATTRS

public static final HttpFSFileSystem.Operation LISTXATTRS
Method Detail

values

public static HttpFSFileSystem.Operation[] 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.Operation c : HttpFSFileSystem.Operation.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.Operation 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

getMethod

public String getMethod()


Copyright © 2014 Apache Software Foundation. All Rights Reserved.