public enum XmppMessageType extends Enum<XmppMessageType>
| Enum Constant and Description |
|---|
CHAT
represents messages of type
Message.Type.chat |
dynamic
dynamic Mule endpoints use this identifier
|
GROUPCHAT
represents messages of type
Message.Type.groupchat |
MESSAGE
represents messages of type
Message.Type.normal |
| Modifier and Type | Method and Description |
|---|---|
static XmppMessageType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XmppMessageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XmppMessageType MESSAGE
Message.Type.normalpublic static final XmppMessageType CHAT
Message.Type.chatpublic static final XmppMessageType GROUPCHAT
Message.Type.groupchatpublic static final XmppMessageType dynamic
public static XmppMessageType[] values()
for (XmppMessageType c : XmppMessageType.values()) System.out.println(c);
public static XmppMessageType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2003–2015 MuleSoft, Inc.. All rights reserved.