Enum Class SnapshotState

java.lang.Object
java.lang.Enum<SnapshotState>
org.elasticsearch.snapshots.SnapshotState
All Implemented Interfaces:
Serializable, Comparable<SnapshotState>, Constable

public enum SnapshotState extends Enum<SnapshotState>
Represents the state that a snapshot can be in
  • Enum Constant Details

    • IN_PROGRESS

      public static final SnapshotState IN_PROGRESS
      Snapshot process has started
    • SUCCESS

      public static final SnapshotState SUCCESS
      Snapshot process completed successfully
    • FAILED

      public static final SnapshotState FAILED
      Snapshot failed
    • PARTIAL

      public static final SnapshotState PARTIAL
      Snapshot was partial successful
    • INCOMPATIBLE

      public static final SnapshotState INCOMPATIBLE
      Snapshot is incompatible with the current version of the cluster
  • Method Details

    • values

      public static SnapshotState[] 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 SnapshotState 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
    • value

      public byte value()
      Returns code that represents the snapshot state
      Returns:
      code for the state
    • completed

      public boolean completed()
      Returns true if snapshot completed (successfully or not)
      Returns:
      true if snapshot completed, false otherwise
    • restorable

      public boolean restorable()
      Returns true if snapshot can be restored (at least partially)
      Returns:
      true if snapshot can be restored, false otherwise
    • fromValue

      public static SnapshotState fromValue(byte value)
      Generate snapshot state from code
      Parameters:
      value - the state code
      Returns:
      state