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