public static enum ServerTasks.StartMode extends Enum<ServerTasks.StartMode>
Enum Constant and Description |
---|
DEBUG
Start server in debug mode.
|
PROFILE
Start server in profiling mode.
|
START
Regular server start.
|
Modifier and Type | Method and Description |
---|---|
static ServerTasks.StartMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServerTasks.StartMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServerTasks.StartMode START
public static final ServerTasks.StartMode DEBUG
public static final ServerTasks.StartMode PROFILE
public static ServerTasks.StartMode[] values()
for (ServerTasks.StartMode c : ServerTasks.StartMode.values()) System.out.println(c);
public static ServerTasks.StartMode 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 © 2013. All Rights Reserved.