public static enum ManagedProcess.State extends Enum<ManagedProcess.State>
| Enum Constant and Description |
|---|
CREATED |
DESTROYED |
STARTED |
STOPPED |
| Modifier and Type | Method and Description |
|---|---|
static ManagedProcess.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ManagedProcess.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ManagedProcess.State CREATED
public static final ManagedProcess.State STARTED
public static final ManagedProcess.State STOPPED
public static final ManagedProcess.State DESTROYED
public static ManagedProcess.State[] values()
for (ManagedProcess.State c : ManagedProcess.State.values()) System.out.println(c);
public static ManagedProcess.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 © 2014 JBoss by Red Hat. All rights reserved.