|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<Server.ServerStatusType>
org.peace_tools.workspace.Server.ServerStatusType
public static enum Server.ServerStatusType
Different enumerations defining the last known operational status of a given Server entry. These enumerations were introduced to reflect those used in the XML and to ensure that the code is overall more readable.
| Enum Constant Summary | |
|---|---|
CONNECT_FAILED
The previous attempt to talk to the server failed and the user needs to diagnose this server. |
|
GOOD
The server is good to go and is ready for further use. |
|
INSTALL_FAILED
This status indicates that the installation process of the server failed and the server is unusable. |
|
INSTALLING
This status indicates that the GUI is making attempt to install the runtime subsystem of PEACE onto the server. |
|
UNINSTALL_FAILED
This state indicates that the uninstall attempt on the server has failed. |
|
UNINSTALLING
This status indciates that the GUI is in the process of uninstalling the runtime subsystem of PEACE from the remote machine. |
|
| Method Summary | |
|---|---|
static Server.ServerStatusType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Server.ServerStatusType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, 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 Server.ServerStatusType INSTALLING
public static final Server.ServerStatusType INSTALL_FAILED
public static final Server.ServerStatusType GOOD
public static final Server.ServerStatusType UNINSTALLING
public static final Server.ServerStatusType UNINSTALL_FAILED
public static final Server.ServerStatusType CONNECT_FAILED
| Method Detail |
|---|
public static Server.ServerStatusType[] values()
for (Server.ServerStatusType c : Server.ServerStatusType.values()) System.out.println(c);
public static Server.ServerStatusType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
java.lang.NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||