public static enum AbstractLauncher.LauncherState extends Enum<AbstractLauncher.LauncherState>
| Enum Constant and Description |
|---|
ERROR |
INITALIZING |
LAUNCHING |
RUNNING |
STOPPED |
STOPPING |
| Modifier and Type | Method and Description |
|---|---|
static AbstractLauncher.LauncherState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbstractLauncher.LauncherState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractLauncher.LauncherState INITALIZING
public static final AbstractLauncher.LauncherState LAUNCHING
public static final AbstractLauncher.LauncherState RUNNING
public static final AbstractLauncher.LauncherState STOPPING
public static final AbstractLauncher.LauncherState STOPPED
public static final AbstractLauncher.LauncherState ERROR
public static AbstractLauncher.LauncherState[] values()
for (AbstractLauncher.LauncherState c : AbstractLauncher.LauncherState.values()) System.out.println(c);
public static AbstractLauncher.LauncherState 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 © 2014–2017 openbase.org. All rights reserved.