public static enum ProtocolEvent.Type extends java.lang.Enum<ProtocolEvent.Type>
| Enum Constant and Description |
|---|
NETWORK
If the event is 'I'm sending/receiving some data through the network layer'
|
| Modifier and Type | Method and Description |
|---|---|
static ProtocolEvent.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProtocolEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProtocolEvent.Type NETWORK
public static ProtocolEvent.Type[] values()
for (ProtocolEvent.Type c : ProtocolEvent.Type.values()) System.out.println(c);
public static ProtocolEvent.Type 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 namejava.lang.NullPointerException - if the argument is null