org.apache.hadoop.hbase
Enum HConstants.OperationStatusCode

java.lang.Object
  extended by java.lang.Enum<HConstants.OperationStatusCode>
      extended by org.apache.hadoop.hbase.HConstants.OperationStatusCode
All Implemented Interfaces:
Serializable, Comparable<HConstants.OperationStatusCode>
Enclosing class:
HConstants

public static enum HConstants.OperationStatusCode
extends Enum<HConstants.OperationStatusCode>

Status codes used for return values of bulk operations.


Enum Constant Summary
BAD_FAMILY
           
FAILURE
           
NOT_RUN
           
SANITY_CHECK_FAILURE
           
SUCCESS
           
 
Method Summary
static HConstants.OperationStatusCode valueOf(String name)
          Returns the enum constant of this type with the specified name.
static HConstants.OperationStatusCode[] 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

NOT_RUN

public static final HConstants.OperationStatusCode NOT_RUN

SUCCESS

public static final HConstants.OperationStatusCode SUCCESS

BAD_FAMILY

public static final HConstants.OperationStatusCode BAD_FAMILY

SANITY_CHECK_FAILURE

public static final HConstants.OperationStatusCode SANITY_CHECK_FAILURE

FAILURE

public static final HConstants.OperationStatusCode FAILURE
Method Detail

values

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

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

valueOf

public static HConstants.OperationStatusCode 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 © 2015 The Apache Software Foundation. All Rights Reserved.