public enum LifecycleTypes extends java.lang.Enum<LifecycleTypes>
| Enum Constant and Description |
|---|
COMPLETE |
NONE |
PLACE_END |
PLACE_START |
RESUME |
SCHEDULED |
START |
SUSPEND |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static LifecycleTypes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LifecycleTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LifecycleTypes SCHEDULED
public static final LifecycleTypes START
public static final LifecycleTypes COMPLETE
public static final LifecycleTypes SUSPEND
public static final LifecycleTypes RESUME
public static final LifecycleTypes NONE
public static final LifecycleTypes PLACE_START
public static final LifecycleTypes PLACE_END
public static LifecycleTypes[] values()
for (LifecycleTypes c : LifecycleTypes.values()) System.out.println(c);
public static LifecycleTypes valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String toString()
toString in class java.lang.Enum<LifecycleTypes>