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