|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<EmbeddedServer.State>
com.neeve.server.embedded.EmbeddedServer.State
public static enum EmbeddedServer.State
Enumerates the various EmbeddedServer
states.
Enum Constant Summary | |
---|---|
Failed
Server startup failed. |
|
Init
Server has been created, but not started. |
|
Shutdown
Server has been shutdown. |
|
Started
Server has started. |
|
Starting
Server is starting. |
Method Summary | |
---|---|
static EmbeddedServer.State |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static EmbeddedServer.State[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final EmbeddedServer.State Init
public static final EmbeddedServer.State Starting
public static final EmbeddedServer.State Started
public static final EmbeddedServer.State Failed
public static final EmbeddedServer.State Shutdown
Method Detail |
---|
public static EmbeddedServer.State[] values()
for (EmbeddedServer.State c : EmbeddedServer.State.values()) System.out.println(c);
public static EmbeddedServer.State valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |