public enum JCoServerState extends Enum<JCoServerState>
Enum Constant and Description |
---|
ALIVE
Flag which indicates that the server is listening.
|
STARTED
Flag which is being set if the server has been started.
|
STOPPED
Flag which indicates that the server was stopped.
|
STOPPING
Flag which indicates that the server is being stopped.
|
Modifier and Type | Method and Description |
---|---|
static JCoServerState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JCoServerState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JCoServerState STARTED
public static final JCoServerState ALIVE
public static final JCoServerState STOPPING
public static final JCoServerState STOPPED
public static JCoServerState[] values()
for (JCoServerState c : JCoServerState.values()) System.out.println(c);
public static JCoServerState 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 © 2024 SAP. All rights reserved.