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