Enum BotCommand.CommandType
- java.lang.Object
-
- java.lang.Enum<BotCommand.CommandType>
-
- com.automationanywhere.commandsdk.annotations.BotCommand.CommandType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<BotCommand.CommandType>
- Enclosing class:
- BotCommand
public static enum BotCommand.CommandType extends java.lang.Enum<BotCommand.CommandType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Command
Condition
DESKTOP_OPERATION_BUTTON
DESKTOP_OPERATION_SELECT
DESKTOP_OPERATION_STAGE
DESKTOP_OPERATION_TABLE
DESKTOP_OPERATION_TREE
DesktopOperationButton
Deprecated.DesktopOperationSelect
Deprecated.Iterator
Trigger
Variable
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BotCommand.CommandType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static BotCommand.CommandType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Command
public static final BotCommand.CommandType Command
-
Iterator
public static final BotCommand.CommandType Iterator
-
Condition
public static final BotCommand.CommandType Condition
-
Variable
public static final BotCommand.CommandType Variable
-
Trigger
public static final BotCommand.CommandType Trigger
-
DesktopOperationSelect
@Deprecated public static final BotCommand.CommandType DesktopOperationSelect
Deprecated.
-
DesktopOperationButton
@Deprecated public static final BotCommand.CommandType DesktopOperationButton
Deprecated.
-
DESKTOP_OPERATION_STAGE
public static final BotCommand.CommandType DESKTOP_OPERATION_STAGE
-
DESKTOP_OPERATION_SELECT
public static final BotCommand.CommandType DESKTOP_OPERATION_SELECT
-
DESKTOP_OPERATION_BUTTON
public static final BotCommand.CommandType DESKTOP_OPERATION_BUTTON
-
DESKTOP_OPERATION_TREE
public static final BotCommand.CommandType DESKTOP_OPERATION_TREE
-
DESKTOP_OPERATION_TABLE
public static final BotCommand.CommandType DESKTOP_OPERATION_TABLE
-
-
Method Detail
-
values
public static BotCommand.CommandType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (BotCommand.CommandType c : BotCommand.CommandType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BotCommand.CommandType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-