Uses of Class
org.jivesoftware.smack.packet.Message.Type

Packages that use Message.Type
org.jivesoftware.smack.filter Allows PacketCollector and PacketListener instances to filter for packets with particular attributes. 
org.jivesoftware.smack.packet XML packets that are part of the XMPP protocol. 
 

Uses of Message.Type in org.jivesoftware.smack.filter
 

Constructors in org.jivesoftware.smack.filter with parameters of type Message.Type
MessageTypeFilter(Message.Type type)
          Creates a new message type filter using the specified message type.
 

Uses of Message.Type in org.jivesoftware.smack.packet
 

Methods in org.jivesoftware.smack.packet that return Message.Type
static Message.Type Message.Type.fromString(java.lang.String name)
           
 Message.Type Message.getType()
          Returns the type of the message.
static Message.Type Message.Type.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Message.Type[] Message.Type.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.jivesoftware.smack.packet with parameters of type Message.Type
 void Message.setType(Message.Type type)
          Sets the type of the message.
 

Constructors in org.jivesoftware.smack.packet with parameters of type Message.Type
Message(java.lang.String to, Message.Type type)
          Creates a new message of the specified type to a recipient.