Package com.hazelcast.persistence
Enum Class BackupTaskState
- All Implemented Interfaces:
Serializable
,Comparable<BackupTaskState>
,Constable
The state of the persistence backup task
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe backup task has failedThe backup task is currently in progressNo backup task has yet been runThe backup task has been submitted but not yet started.The backup task completed successfully -
Method Summary
Modifier and TypeMethodDescriptionboolean
Returns if the backup task is in progress.boolean
isDone()
Returns true if the backup task completed (successfully or with failure)static BackupTaskState
Returns the enum constant of this class with the specified name.static BackupTaskState[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NO_TASK
No backup task has yet been run -
NOT_STARTED
The backup task has been submitted but not yet started. -
IN_PROGRESS
The backup task is currently in progress -
FAILURE
The backup task has failed -
SUCCESS
The backup task completed successfully
-
-
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
-
isDone
public boolean isDone()Returns true if the backup task completed (successfully or with failure) -
inProgress
public boolean inProgress()Returns if the backup task is in progress. The task could also not be started yet but will be.
-