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