public enum LifecycleAction extends Enum<LifecycleAction>
| Modifier and Type | Method and Description |
|---|---|
String |
getYamlName() |
static LifecycleAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LifecycleAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LifecycleAction DOWNLOAD
public static final LifecycleAction INSTALL
public static final LifecycleAction CONFIGURE
public static final LifecycleAction START
public static LifecycleAction[] values()
for (LifecycleAction c : LifecycleAction.values()) System.out.println(c);
public static LifecycleAction 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 String getYamlName()