public static enum Startup.Lifecycle extends Enum<Startup.Lifecycle>
| Modifier and Type | Method and Description |
|---|---|
static Startup.Lifecycle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Startup.Lifecycle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Startup.Lifecycle START
public static final Startup.Lifecycle SERVER
public static Startup.Lifecycle[] values()
for (Startup.Lifecycle c : Startup.Lifecycle.values()) System.out.println(c);
public static Startup.Lifecycle 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 © 2017–2020 Eclipse Foundation. All rights reserved.