public static enum RunResponse.Status extends Enum<RunResponse.Status>
| Enum Constant and Description |
|---|
CANCELLED |
CANCELLING |
COMPLETED |
EXPIRED |
FAILED |
IN_PROGRESS |
QUEUED |
REQUIRE_ACTION |
| Modifier and Type | Method and Description |
|---|---|
static RunResponse.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RunResponse.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RunResponse.Status QUEUED
public static final RunResponse.Status IN_PROGRESS
public static final RunResponse.Status REQUIRE_ACTION
public static final RunResponse.Status CANCELLING
public static final RunResponse.Status CANCELLED
public static final RunResponse.Status FAILED
public static final RunResponse.Status COMPLETED
public static final RunResponse.Status EXPIRED
public static RunResponse.Status[] values()
for (RunResponse.Status c : RunResponse.Status.values()) System.out.println(c);
public static RunResponse.Status 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 grt1228. All rights reserved.