public enum LifecycleRV extends java.lang.Enum<LifecycleRV>
| Enum Constant and Description |
|---|
CONTINUE
Continue starting the application
|
RESTART
Restart the application
|
RESTART_CLEAR_STATE
Restart the application with a cleared persisted state
|
SHUTDOWN
Shut down the application
|
| Modifier and Type | Method and Description |
|---|---|
static LifecycleRV |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LifecycleRV[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LifecycleRV CONTINUE
public static final LifecycleRV SHUTDOWN
public static final LifecycleRV RESTART
public static final LifecycleRV RESTART_CLEAR_STATE
public static LifecycleRV[] values()
for (LifecycleRV c : LifecycleRV.values()) System.out.println(c);
public static LifecycleRV 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 null