public enum TableFileCreationReason extends Enum<TableFileCreationReason>
| Enum Constant and Description |
|---|
COMPACTION |
FLUSH |
MISC |
RECOVERY |
| Modifier and Type | Method and Description |
|---|---|
static TableFileCreationReason |
valueOf(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(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021. All rights reserved.