public enum StatusBackupRun extends Enum<StatusBackupRun>
Enum Constant and Description |
---|
ACCEPTED
Indicates the task is queued to run but not yet running.
|
CANCELED
Indicates the task has been canceled.
|
CANCELING
Indicates a request to cancel the task has occurred but the task is not yet
canceled.
|
FAILURE
Indicates the task failed.
|
RUNNING
Indicates the task is running.
|
SUCCESS
Indicates the task was successful.
|
UNKNOWN
Unknown status.
|
WARNING
Indicates that the task completed successfully but with warnings.
|
Modifier and Type | Method and Description |
---|---|
static StatusBackupRun |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StatusBackupRun[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatusBackupRun ACCEPTED
public static final StatusBackupRun RUNNING
public static final StatusBackupRun CANCELING
public static final StatusBackupRun CANCELED
public static final StatusBackupRun SUCCESS
public static final StatusBackupRun FAILURE
public static final StatusBackupRun WARNING
public static final StatusBackupRun UNKNOWN
public static StatusBackupRun[] values()
for (StatusBackupRun c : StatusBackupRun.values()) System.out.println(c);
public static StatusBackupRun 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.