public enum BackupTaskState extends Enum<BackupTaskState>
| Enum Constant and Description | 
|---|
| FAILUREThe backup task has failed | 
| IN_PROGRESSThe backup task is currently in progress | 
| NOT_STARTEDThe backup task has not yet started. | 
| SUCCESSThe backup task completed successfully | 
| Modifier and Type | Method and Description | 
|---|---|
| static BackupTaskState | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static BackupTaskState[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final BackupTaskState NOT_STARTED
public static final BackupTaskState IN_PROGRESS
public static final BackupTaskState FAILURE
public static final BackupTaskState SUCCESS
public static BackupTaskState[] values()
for (BackupTaskState c : BackupTaskState.values()) System.out.println(c);
public static BackupTaskState 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 © 2016 Hazelcast, Inc.. All Rights Reserved.