Uses of Class
org.jivesoftware.smackx.jingle.JingleActionEnum

Packages that use JingleActionEnum
org.jivesoftware.smackx.jingle   
org.jivesoftware.smackx.packet XML packets that are part of the XMPP extension protocols. 
 

Uses of JingleActionEnum in org.jivesoftware.smackx.jingle
 

Methods in org.jivesoftware.smackx.jingle that return JingleActionEnum
static JingleActionEnum JingleActionEnum.getAction(java.lang.String inActionCode)
          Returns the Action enum for a String action value.
static JingleActionEnum JingleActionEnum.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static JingleActionEnum[] JingleActionEnum.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.jivesoftware.smackx.jingle with parameters of type JingleActionEnum
 IQ JingleSessionStateEnded.processJingle(JingleSession session, Jingle jingle, JingleActionEnum action)
          Pretty much nothing is valid for receiving once we've ended the session.
abstract  IQ JingleSessionState.processJingle(JingleSession session, Jingle jingle, JingleActionEnum action)
          Process an incoming Jingle Packet.
 

Uses of JingleActionEnum in org.jivesoftware.smackx.packet
 

Methods in org.jivesoftware.smackx.packet that return JingleActionEnum
 JingleActionEnum Jingle.getAction()
          Get the action specified in the packet
 

Methods in org.jivesoftware.smackx.packet with parameters of type JingleActionEnum
 void Jingle.setAction(JingleActionEnum action)
          Set the action in the packet
 

Constructors in org.jivesoftware.smackx.packet with parameters of type JingleActionEnum
Jingle(JingleActionEnum action)
          A constructor where the action can be specified.