public enum StatusCopySnapshotTaskStatus extends Enum<StatusCopySnapshotTaskStatus>
| Enum Constant and Description | 
|---|
| ACCEPTEDIndicates the task is queued to run but not yet running. | 
| CANCELEDIndicates the task has been canceled. | 
| CANCELINGIndicates a request to cancel the task has occurred but the task is not yet
 canceled. | 
| FAILUREIndicates the task failed. | 
| RUNNINGIndicates the task is running. | 
| SUCCESSIndicates the task was successful. | 
| Modifier and Type | Method and Description | 
|---|---|
| static StatusCopySnapshotTaskStatus | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static StatusCopySnapshotTaskStatus[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final StatusCopySnapshotTaskStatus ACCEPTED
public static final StatusCopySnapshotTaskStatus RUNNING
public static final StatusCopySnapshotTaskStatus CANCELING
public static final StatusCopySnapshotTaskStatus CANCELED
public static final StatusCopySnapshotTaskStatus SUCCESS
public static final StatusCopySnapshotTaskStatus FAILURE
public static StatusCopySnapshotTaskStatus[] values()
for (StatusCopySnapshotTaskStatus c : StatusCopySnapshotTaskStatus.values()) System.out.println(c);
public static StatusCopySnapshotTaskStatus 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 © 2020 iland Internet Solutions, Corp. All rights reserved.