public enum TableFileCreationReason extends java.lang.Enum<TableFileCreationReason>
| Enum Constant and Description |
|---|
COMPACTION |
FLUSH |
MISC |
RECOVERY |
| Modifier and Type | Method and Description |
|---|---|
static TableFileCreationReason |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TableFileCreationReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableFileCreationReason FLUSH
public static final TableFileCreationReason COMPACTION
public static final TableFileCreationReason RECOVERY
public static final TableFileCreationReason MISC
public static TableFileCreationReason[] values()
for (TableFileCreationReason c : TableFileCreationReason.values()) System.out.println(c);
public static TableFileCreationReason valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null