public enum OperationStage extends Enum<OperationStage>
| Modifier and Type | Method and Description |
|---|---|
static OperationStage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OperationStage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OperationStage STAGE_UNKNOWN
public static final OperationStage STAGE_FLUSH_RUN
public static final OperationStage STAGE_FLUSH_WRITE_L0
public static final OperationStage STAGE_COMPACTION_PREPARE
public static final OperationStage STAGE_COMPACTION_RUN
public static final OperationStage STAGE_COMPACTION_PROCESS_KV
public static final OperationStage STAGE_COMPACTION_INSTALL
public static final OperationStage STAGE_COMPACTION_SYNC_FILE
public static final OperationStage STAGE_PICK_MEMTABLES_TO_FLUSH
public static final OperationStage STAGE_MEMTABLE_ROLLBACK
public static final OperationStage STAGE_MEMTABLE_INSTALL_FLUSH_RESULTS
public static OperationStage[] values()
for (OperationStage c : OperationStage.values()) System.out.println(c);
public static OperationStage 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.