public static enum CloudTask.State extends Enum<CloudTask.State>
| Enum Constant and Description |
|---|
CANCELING |
FAILED |
PENDING |
RUNNING |
SUCCEEDED |
| Modifier and Type | Method and Description |
|---|---|
static CloudTask.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CloudTask.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CloudTask.State PENDING
public static final CloudTask.State RUNNING
public static final CloudTask.State SUCCEEDED
public static final CloudTask.State CANCELING
public static final CloudTask.State FAILED
public static CloudTask.State[] values()
for (CloudTask.State c : CloudTask.State.values()) System.out.println(c);
public static CloudTask.State 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 SAP SE. All rights reserved.