public enum LifecyclePhase extends Enum<LifecyclePhase>
| Enum Constant and Description |
|---|
ABORTING
The daemon is currently aborting
|
STARTED
The daemon is started
|
STARTING
The daemon is currently starting
|
STOPPED
The daemon is stopped
|
STOPPING
The daemon is currently shutting down
|
| Modifier and Type | Method and Description |
|---|---|
static LifecyclePhase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LifecyclePhase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LifecyclePhase STARTING
public static final LifecyclePhase STARTED
public static final LifecyclePhase STOPPING
public static final LifecyclePhase ABORTING
public static final LifecyclePhase STOPPED
public static LifecyclePhase[] values()
for (LifecyclePhase c : LifecyclePhase.values()) System.out.println(c);
public static LifecyclePhase 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 © 2012-2013 Taimos GmbH. All Rights Reserved.