org.apache.hadoop.hbase
Enum HConstants.OperationStatusCode
java.lang.Object
java.lang.Enum<HConstants.OperationStatusCode>
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.
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
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.