org.apache.hadoop.hbase.util
Enum HBaseFsck.ErrorReporter.ERROR_CODE

java.lang.Object
  extended by java.lang.Enum<HBaseFsck.ErrorReporter.ERROR_CODE>
      extended by org.apache.hadoop.hbase.util.HBaseFsck.ErrorReporter.ERROR_CODE
All Implemented Interfaces:
Serializable, Comparable<HBaseFsck.ErrorReporter.ERROR_CODE>
Enclosing interface:
HBaseFsck.ErrorReporter

public static enum HBaseFsck.ErrorReporter.ERROR_CODE
extends Enum<HBaseFsck.ErrorReporter.ERROR_CODE>


Enum Constant Summary
BOUNDARIES_ERROR
           
DEGENERATE_REGION
           
DUPE_STARTKEYS
           
EMPTY_META_CELL
           
EXPIRED_TABLE_LOCK
           
FIRST_REGION_STARTKEY_NOT_EMPTY
           
HOLE_IN_REGION_CHAIN
           
LAST_REGION_ENDKEY_NOT_EMPTY
           
LINGERING_REFERENCE_HFILE
           
LINGERING_SPLIT_PARENT
           
MULTI_DEPLOYED
           
MULTI_META_REGION
           
NO_META_REGION
           
NO_TABLEINFO_FILE
           
NO_VERSION_FILE
           
NOT_DEPLOYED
           
NOT_IN_HDFS
           
NOT_IN_HDFS_OR_DEPLOYED
           
NOT_IN_META
           
NOT_IN_META_HDFS
           
NOT_IN_META_OR_DEPLOYED
           
NULL_META_REGION
           
ORPHAN_HDFS_REGION
           
ORPHANED_ZK_TABLE_ENTRY
           
OVERLAP_IN_REGION_CHAIN
           
REGION_CYCLE
           
RS_CONNECT_FAILURE
           
SERVER_DOES_NOT_MATCH_META
           
SHOULD_NOT_BE_DEPLOYED
           
UNKNOWN
           
WRONG_USAGE
           
 
Method Summary
static HBaseFsck.ErrorReporter.ERROR_CODE valueOf(String name)
          Returns the enum constant of this type with the specified name.
static HBaseFsck.ErrorReporter.ERROR_CODE[] 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

UNKNOWN

public static final HBaseFsck.ErrorReporter.ERROR_CODE UNKNOWN

NO_META_REGION

public static final HBaseFsck.ErrorReporter.ERROR_CODE NO_META_REGION

NULL_META_REGION

public static final HBaseFsck.ErrorReporter.ERROR_CODE NULL_META_REGION

NO_VERSION_FILE

public static final HBaseFsck.ErrorReporter.ERROR_CODE NO_VERSION_FILE

NOT_IN_META_HDFS

public static final HBaseFsck.ErrorReporter.ERROR_CODE NOT_IN_META_HDFS

NOT_IN_META

public static final HBaseFsck.ErrorReporter.ERROR_CODE NOT_IN_META

NOT_IN_META_OR_DEPLOYED

public static final HBaseFsck.ErrorReporter.ERROR_CODE NOT_IN_META_OR_DEPLOYED

NOT_IN_HDFS_OR_DEPLOYED

public static final HBaseFsck.ErrorReporter.ERROR_CODE NOT_IN_HDFS_OR_DEPLOYED

NOT_IN_HDFS

public static final HBaseFsck.ErrorReporter.ERROR_CODE NOT_IN_HDFS

SERVER_DOES_NOT_MATCH_META

public static final HBaseFsck.ErrorReporter.ERROR_CODE SERVER_DOES_NOT_MATCH_META

NOT_DEPLOYED

public static final HBaseFsck.ErrorReporter.ERROR_CODE NOT_DEPLOYED

MULTI_DEPLOYED

public static final HBaseFsck.ErrorReporter.ERROR_CODE MULTI_DEPLOYED

SHOULD_NOT_BE_DEPLOYED

public static final HBaseFsck.ErrorReporter.ERROR_CODE SHOULD_NOT_BE_DEPLOYED

MULTI_META_REGION

public static final HBaseFsck.ErrorReporter.ERROR_CODE MULTI_META_REGION

RS_CONNECT_FAILURE

public static final HBaseFsck.ErrorReporter.ERROR_CODE RS_CONNECT_FAILURE

FIRST_REGION_STARTKEY_NOT_EMPTY

public static final HBaseFsck.ErrorReporter.ERROR_CODE FIRST_REGION_STARTKEY_NOT_EMPTY

LAST_REGION_ENDKEY_NOT_EMPTY

public static final HBaseFsck.ErrorReporter.ERROR_CODE LAST_REGION_ENDKEY_NOT_EMPTY

DUPE_STARTKEYS

public static final HBaseFsck.ErrorReporter.ERROR_CODE DUPE_STARTKEYS

HOLE_IN_REGION_CHAIN

public static final HBaseFsck.ErrorReporter.ERROR_CODE HOLE_IN_REGION_CHAIN

OVERLAP_IN_REGION_CHAIN

public static final HBaseFsck.ErrorReporter.ERROR_CODE OVERLAP_IN_REGION_CHAIN

REGION_CYCLE

public static final HBaseFsck.ErrorReporter.ERROR_CODE REGION_CYCLE

DEGENERATE_REGION

public static final HBaseFsck.ErrorReporter.ERROR_CODE DEGENERATE_REGION

ORPHAN_HDFS_REGION

public static final HBaseFsck.ErrorReporter.ERROR_CODE ORPHAN_HDFS_REGION

LINGERING_SPLIT_PARENT

public static final HBaseFsck.ErrorReporter.ERROR_CODE LINGERING_SPLIT_PARENT

NO_TABLEINFO_FILE

public static final HBaseFsck.ErrorReporter.ERROR_CODE NO_TABLEINFO_FILE

LINGERING_REFERENCE_HFILE

public static final HBaseFsck.ErrorReporter.ERROR_CODE LINGERING_REFERENCE_HFILE

WRONG_USAGE

public static final HBaseFsck.ErrorReporter.ERROR_CODE WRONG_USAGE

EMPTY_META_CELL

public static final HBaseFsck.ErrorReporter.ERROR_CODE EMPTY_META_CELL

EXPIRED_TABLE_LOCK

public static final HBaseFsck.ErrorReporter.ERROR_CODE EXPIRED_TABLE_LOCK

ORPHANED_ZK_TABLE_ENTRY

public static final HBaseFsck.ErrorReporter.ERROR_CODE ORPHANED_ZK_TABLE_ENTRY

BOUNDARIES_ERROR

public static final HBaseFsck.ErrorReporter.ERROR_CODE BOUNDARIES_ERROR
Method Detail

values

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

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

valueOf

public static HBaseFsck.ErrorReporter.ERROR_CODE 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.