public static enum RawMessageData.MessageSource extends java.lang.Enum<RawMessageData.MessageSource>
Enum Constant and Description |
---|
CLIENT
The client has send the message.
|
SERVER
The server has send the message.
|
Modifier and Type | Method and Description |
---|---|
static RawMessageData.MessageSource |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RawMessageData.MessageSource[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RawMessageData.MessageSource CLIENT
public static final RawMessageData.MessageSource SERVER
public static RawMessageData.MessageSource[] values()
for (RawMessageData.MessageSource c : RawMessageData.MessageSource.values()) System.out.println(c);
public static RawMessageData.MessageSource 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