public enum RestoreTaskStatus extends Enum<RestoreTaskStatus>
Enum Constant and Description |
---|
CANCELLED
Indicates that task or jb has been cancelled.
|
FINISHED
Indicates that the Restore Task has finished.
|
IN_PROGRESS
Indicates that the Restore Task is in progress.
|
READY_TO_SCHEDULE
Indicates the Restore Task is waiting to be scheduled.
|
Modifier and Type | Method and Description |
---|---|
static RestoreTaskStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RestoreTaskStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RestoreTaskStatus READY_TO_SCHEDULE
public static final RestoreTaskStatus IN_PROGRESS
public static final RestoreTaskStatus FINISHED
public static final RestoreTaskStatus CANCELLED
public static RestoreTaskStatus[] values()
for (RestoreTaskStatus c : RestoreTaskStatus.values()) System.out.println(c);
public static RestoreTaskStatus 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 © 2023 iland Internet Solutions, Corp. All rights reserved.