public static enum ZProxy.State extends Enum<ZProxy.State>
Enum Constant and Description |
---|
ALIVE |
EXITED |
PAUSED |
STARTED |
STOPPED |
Modifier and Type | Method and Description |
---|---|
static ZProxy.State |
valueOf(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(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2022. All rights reserved.