Package org.elasticsearch.snapshots
Enum Class SnapshotState
- All Implemented Interfaces:
Serializable
,Comparable<SnapshotState>
,Constable
Represents the state that a snapshot can be in
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionSnapshot failedSnapshot process has startedSnapshot is incompatible with the current version of the clusterSnapshot was partial successfulSnapshot process completed successfully -
Method Summary
Modifier and TypeMethodDescriptionboolean
Returns true if snapshot completed (successfully or not)static SnapshotState
fromValue(byte value)
Generate snapshot state from codeboolean
Returns true if snapshot can be restored (at least partially)byte
value()
Returns code that represents the snapshot statestatic SnapshotState
Returns the enum constant of this class with the specified name.static SnapshotState[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
IN_PROGRESS
Snapshot process has started -
SUCCESS
Snapshot process completed successfully -
FAILED
Snapshot failed -
PARTIAL
Snapshot was partial successful -
INCOMPATIBLE
Snapshot is incompatible with the current version of the cluster
-
-
Method Details
-
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
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 nameNullPointerException
- 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
Generate snapshot state from code- Parameters:
value
- the state code- Returns:
- state
-