org.apache.hadoop.hbase
Enum HConstants.Modify

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

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

modifyTable op for replacing the table descriptor


Enum Constant Summary
CLOSE_REGION
           
TABLE_COMPACT
           
TABLE_FLUSH
           
TABLE_MAJOR_COMPACT
           
TABLE_SET_HTD
           
TABLE_SPLIT
           
 
Method Summary
static HConstants.Modify valueOf(String name)
          Returns the enum constant of this type with the specified name.
static HConstants.Modify[] 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

CLOSE_REGION

public static final HConstants.Modify CLOSE_REGION

TABLE_COMPACT

public static final HConstants.Modify TABLE_COMPACT

TABLE_FLUSH

public static final HConstants.Modify TABLE_FLUSH

TABLE_MAJOR_COMPACT

public static final HConstants.Modify TABLE_MAJOR_COMPACT

TABLE_SET_HTD

public static final HConstants.Modify TABLE_SET_HTD

TABLE_SPLIT

public static final HConstants.Modify TABLE_SPLIT
Method Detail

values

public static HConstants.Modify[] 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.Modify c : HConstants.Modify.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.Modify 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.