|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<CommEvent.CommType>
appl.parallel.event.CommEvent.CommType
public static enum CommEvent.CommType
Enum Constant Summary | |
---|---|
CLIENT_EXECUTION
A Client has executed a Task (including communication) |
|
CLIENT_MERGE
A client has invoked a merge |
|
CLIENT_UPDATE
A client has invoked an update |
|
CONNECT
Connection to servers were made |
|
DISCONNECT
The client disconnects from the servers |
|
REMOTE_EXECUTION
A Server has executed a task (without client-server communication) |
|
REMOTE_UPDATE
A Server has made an update from a source (possibly another server) |
|
TRANSFER_DATA
data was transfered |
|
TRANSFER_METADATA
meta data was transfered |
|
TRANSFER_PARAMETERS
Parameters were transfered |
|
UNDEFINED
A not further specified type |
Method Summary | |
---|---|
static CommEvent.CommType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static CommEvent.CommType[] |
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 CommEvent.CommType UNDEFINED
public static final CommEvent.CommType REMOTE_UPDATE
public static final CommEvent.CommType REMOTE_EXECUTION
public static final CommEvent.CommType CLIENT_EXECUTION
public static final CommEvent.CommType CLIENT_UPDATE
public static final CommEvent.CommType CLIENT_MERGE
public static final CommEvent.CommType TRANSFER_PARAMETERS
public static final CommEvent.CommType TRANSFER_METADATA
public static final CommEvent.CommType TRANSFER_DATA
public static final CommEvent.CommType CONNECT
public static final CommEvent.CommType DISCONNECT
Method Detail |
---|
public static CommEvent.CommType[] values()
for (CommEvent.CommType c : CommEvent.CommType.values()) System.out.println(c);
public static CommEvent.CommType 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 |