public enum StatusSourceBackupStatus extends Enum<StatusSourceBackupStatus>
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.
|
WARNING
Indicates the task succeeded but that there were warnings.
|
Modifier and Type | Method and Description |
---|---|
static StatusSourceBackupStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StatusSourceBackupStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatusSourceBackupStatus ACCEPTED
public static final StatusSourceBackupStatus RUNNING
public static final StatusSourceBackupStatus CANCELING
public static final StatusSourceBackupStatus CANCELED
public static final StatusSourceBackupStatus SUCCESS
public static final StatusSourceBackupStatus FAILURE
public static final StatusSourceBackupStatus WARNING
public static StatusSourceBackupStatus[] values()
for (StatusSourceBackupStatus c : StatusSourceBackupStatus.values()) System.out.println(c);
public static StatusSourceBackupStatus 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.