org.apache.hadoop.hbase
Enum RegionHistorian.HistorianColumnKey

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

public static enum RegionHistorian.HistorianColumnKey
extends Enum<RegionHistorian.HistorianColumnKey>


Enum Constant Summary
REGION_ASSIGNMENT
           
REGION_COMPACTION
           
REGION_CREATION
           
REGION_FLUSH
           
REGION_OPEN
           
REGION_SPLIT
           
 
Field Summary
 byte[] key
           
 
Method Summary
static RegionHistorian.HistorianColumnKey valueOf(String name)
          Returns the enum constant of this type with the specified name.
static RegionHistorian.HistorianColumnKey[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

REGION_CREATION

public static final RegionHistorian.HistorianColumnKey REGION_CREATION

REGION_OPEN

public static final RegionHistorian.HistorianColumnKey REGION_OPEN

REGION_SPLIT

public static final RegionHistorian.HistorianColumnKey REGION_SPLIT

REGION_COMPACTION

public static final RegionHistorian.HistorianColumnKey REGION_COMPACTION

REGION_FLUSH

public static final RegionHistorian.HistorianColumnKey REGION_FLUSH

REGION_ASSIGNMENT

public static final RegionHistorian.HistorianColumnKey REGION_ASSIGNMENT
Field Detail

key

public byte[] key
Method Detail

values

public static final RegionHistorian.HistorianColumnKey[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(RegionHistorian.HistorianColumnKey c : RegionHistorian.HistorianColumnKey.values())
        System.out.println(c);

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

valueOf

public static RegionHistorian.HistorianColumnKey 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


Copyright © 2008 The Apache Software Foundation