public static enum Message.Type extends java.lang.Enum<Message.Type>
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static Message.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Message.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Message.Type MODULE_REGISTRATION_REQUEST
public static final Message.Type MODULE_REGISTRATION_RESPONSE
public static final Message.Type EVENT_PROCESSING_REQUEST
public static final Message.Type EVENT_PROCESSING_RESPONSE
public static final Message.Type AUDIENCE_SUBSCRIPTION_REQUEST
public static final Message.Type AUDIENCE_SUBSCRIPTION_RESPONSE
public static final Message.Type AUDIENCE_MEMBERSHIP_CHANGE_REQUEST
public static final Message.Type AUDIENCE_MEMBERSHIP_CHANGE_RESPONSE
public static Message.Type[] values()
for (Message.Type c : Message.Type.values()) System.out.println(c);
public static Message.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 nullpublic java.lang.String toString()
toString in class java.lang.Enum<Message.Type>