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