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