public enum FlushReason extends Enum<FlushReason>
| Enum Constant and Description |
|---|
AUTO_COMPACTION |
DELETE_FILES |
ERROR_RECOVERY |
EXTERNAL_FILE_INGESTION |
GET_LIVE_FILES |
MANUAL_COMPACTION |
MANUAL_FLUSH |
OTHERS |
SHUTDOWN |
TEST |
WRITE_BUFFER_FULL |
WRITE_BUFFER_MANAGER |
| Modifier and Type | Method and Description |
|---|---|
static FlushReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlushReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlushReason OTHERS
public static final FlushReason GET_LIVE_FILES
public static final FlushReason SHUTDOWN
public static final FlushReason EXTERNAL_FILE_INGESTION
public static final FlushReason MANUAL_COMPACTION
public static final FlushReason WRITE_BUFFER_MANAGER
public static final FlushReason WRITE_BUFFER_FULL
public static final FlushReason TEST
public static final FlushReason DELETE_FILES
public static final FlushReason AUTO_COMPACTION
public static final FlushReason MANUAL_FLUSH
public static final FlushReason ERROR_RECOVERY
public static FlushReason[] values()
for (FlushReason c : FlushReason.values()) System.out.println(c);
public static FlushReason 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.