public static enum GwoStatus.Value extends java.lang.Enum<GwoStatus.Value>
Enum Constant and Description |
---|
ARCHIVED
Archived experiment status.
|
FINISHED
Finished experiment status.
|
NEW
New experiment status.
|
PAUSED
Paused experiment status.
|
RUNNING
Running experiment status.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toValue()
Returns the value used in the XML.
|
static GwoStatus.Value |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GwoStatus.Value[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GwoStatus.Value ARCHIVED
public static final GwoStatus.Value FINISHED
public static final GwoStatus.Value NEW
public static final GwoStatus.Value PAUSED
public static final GwoStatus.Value RUNNING
public static GwoStatus.Value[] values()
for (GwoStatus.Value c : GwoStatus.Value.values()) System.out.println(c);
public static GwoStatus.Value 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 nullpublic java.lang.String toValue()