Uses of Class
org.jivesoftware.smackx.commands.AdHocCommand.Action
-
Packages that use AdHocCommand.Action Package Description org.jivesoftware.smackx.commands Smacks implementation of XEP-0050: Ad-Hoc Commands.org.jivesoftware.smackx.commands.packet Element classes for XEP-0050: Ad-Hoc Commands. -
-
Uses of AdHocCommand.Action in org.jivesoftware.smackx.commands
Methods in org.jivesoftware.smackx.commands that return AdHocCommand.Action Modifier and Type Method Description protected AdHocCommand.Action
AdHocCommand. getExecuteAction()
Returns the action available for the current stage which is considered the equivalent to "execute".static AdHocCommand.Action
AdHocCommand.Action. valueOf(String name)
Returns the enum constant of this type with the specified name.static AdHocCommand.Action[]
AdHocCommand.Action. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.jivesoftware.smackx.commands that return types with arguments of type AdHocCommand.Action Modifier and Type Method Description protected List<AdHocCommand.Action>
AdHocCommand. getActions()
Returns a collection with the allowed actions based on the current stage.Methods in org.jivesoftware.smackx.commands with parameters of type AdHocCommand.Action Modifier and Type Method Description protected void
AdHocCommand. addActionAvailable(AdHocCommand.Action action)
Add an action to the current stage available actions.protected boolean
AdHocCommand. isValidAction(AdHocCommand.Action action)
Returns true if theaction
is available in the current stage.protected void
AdHocCommand. setExecuteAction(AdHocCommand.Action action)
Sets which of the actions available for the current stage is considered the equivalent to "execute". -
Uses of AdHocCommand.Action in org.jivesoftware.smackx.commands.packet
Methods in org.jivesoftware.smackx.commands.packet that return AdHocCommand.Action Modifier and Type Method Description AdHocCommand.Action
AdHocCommandData. getAction()
Returns the action to execute.AdHocCommand.Action
AdHocCommandData. getExecuteAction()
Methods in org.jivesoftware.smackx.commands.packet that return types with arguments of type AdHocCommand.Action Modifier and Type Method Description List<AdHocCommand.Action>
AdHocCommandData. getActions()
Methods in org.jivesoftware.smackx.commands.packet with parameters of type AdHocCommand.Action Modifier and Type Method Description void
AdHocCommandData. addAction(AdHocCommand.Action action)
void
AdHocCommandData. setAction(AdHocCommand.Action action)
void
AdHocCommandData. setExecuteAction(AdHocCommand.Action executeAction)
-