public static enum APIPackageResponse.ExecutionStatus extends java.lang.Enum<APIPackageResponse.ExecutionStatus>
Enum Constant and Description |
---|
FAILED |
INPROGRESS |
PARSING |
PENDING |
SUCCEEDED |
Modifier and Type | Method and Description |
---|---|
static APIPackageResponse.ExecutionStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static APIPackageResponse.ExecutionStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final APIPackageResponse.ExecutionStatus PENDING
public static final APIPackageResponse.ExecutionStatus PARSING
public static final APIPackageResponse.ExecutionStatus INPROGRESS
public static final APIPackageResponse.ExecutionStatus SUCCEEDED
public static final APIPackageResponse.ExecutionStatus FAILED
public static APIPackageResponse.ExecutionStatus[] values()
for (APIPackageResponse.ExecutionStatus c : APIPackageResponse.ExecutionStatus.values()) System.out.println(c);
public static APIPackageResponse.ExecutionStatus valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null