public enum State extends Enum<State>
| Modifier and Type | Class and Description |
|---|---|
static class |
State.Adapter |
| Modifier and Type | Method and Description |
|---|---|
static State |
fromValue(String input) |
String |
getValue() |
String |
toString() |
static State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="NOT_RUN") public static final State NOT_RUN
@SerializedName(value="RUNNING") public static final State RUNNING
@SerializedName(value="SUCCEEDED") public static final State SUCCEEDED
@SerializedName(value="FAILED") public static final State FAILED
public static State[] values()
for (State c : State.values()) System.out.println(c);
public static 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 nullpublic String getValue()
Copyright © 2026. All rights reserved.