public enum LifeCycleStatus extends Enum<LifeCycleStatus>
| Enum Constant and Description |
|---|
CREATED |
INITIALIZED |
STARTED |
| Modifier and Type | Method and Description |
|---|---|
LifeCycleStatus |
getDemotion() |
LifeCycleStatus |
getPromotion() |
int |
getStage() |
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 INITIALIZED
public static final LifeCycleStatus CREATED
public static final LifeCycleStatus STARTED
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 nullpublic int getStage()
public LifeCycleStatus getPromotion()
public LifeCycleStatus getDemotion()
Copyright © 2003-2017 GateIn. All Rights Reserved.