Package org.rocksdb

Enum Class OperationStage

java.lang.Object
java.lang.Enum<OperationStage>
org.rocksdb.OperationStage
All Implemented Interfaces:
Serializable, Comparable<OperationStage>, Constable

public enum OperationStage extends Enum<OperationStage>
The operation stage.
  • Enum Constant Details

    • STAGE_UNKNOWN

      public static final OperationStage STAGE_UNKNOWN
    • STAGE_FLUSH_RUN

      public static final OperationStage STAGE_FLUSH_RUN
    • STAGE_FLUSH_WRITE_L0

      public static final OperationStage STAGE_FLUSH_WRITE_L0
    • STAGE_COMPACTION_PREPARE

      public static final OperationStage STAGE_COMPACTION_PREPARE
    • STAGE_COMPACTION_RUN

      public static final OperationStage STAGE_COMPACTION_RUN
    • STAGE_COMPACTION_PROCESS_KV

      public static final OperationStage STAGE_COMPACTION_PROCESS_KV
    • STAGE_COMPACTION_INSTALL

      public static final OperationStage STAGE_COMPACTION_INSTALL
    • STAGE_COMPACTION_SYNC_FILE

      public static final OperationStage STAGE_COMPACTION_SYNC_FILE
    • STAGE_PICK_MEMTABLES_TO_FLUSH

      public static final OperationStage STAGE_PICK_MEMTABLES_TO_FLUSH
    • STAGE_MEMTABLE_ROLLBACK

      public static final OperationStage STAGE_MEMTABLE_ROLLBACK
    • STAGE_MEMTABLE_INSTALL_FLUSH_RESULTS

      public static final OperationStage STAGE_MEMTABLE_INSTALL_FLUSH_RESULTS
  • Method Details

    • values

      public static OperationStage[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static OperationStage valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null