Enum AttributeType
- java.lang.Object
-
- java.lang.Enum<AttributeType>
-
- com.automationanywhere.commandsdk.model.AttributeType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<AttributeType>
public enum AttributeType extends java.lang.Enum<AttributeType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOOLEAN
CHECKBOX
CODE
CONDITIONAL
COORDINATE
CREDENTIAL
DATETIME
DICTIONARY
FILE
GROUP
IMAGE
ITERATOR
KEYPRESS
LIST
NUMBER
PROPERTIES
RADIO
REGEX
REGION
SELECT
TABLE
TABS
TASKBOT
TEXT
TEXTAREA
UNKNOWN
VARIABLE
VARIABLEMAP
WINDOW
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AttributeType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static AttributeType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final AttributeType UNKNOWN
-
TEXT
public static final AttributeType TEXT
-
NUMBER
public static final AttributeType NUMBER
-
CHECKBOX
public static final AttributeType CHECKBOX
-
SELECT
public static final AttributeType SELECT
-
RADIO
public static final AttributeType RADIO
-
FILE
public static final AttributeType FILE
-
ITERATOR
public static final AttributeType ITERATOR
-
CONDITIONAL
public static final AttributeType CONDITIONAL
-
VARIABLE
public static final AttributeType VARIABLE
-
REGEX
public static final AttributeType REGEX
-
TEXTAREA
public static final AttributeType TEXTAREA
-
CODE
public static final AttributeType CODE
-
GROUP
public static final AttributeType GROUP
-
TABS
public static final AttributeType TABS
-
DICTIONARY
public static final AttributeType DICTIONARY
-
LIST
public static final AttributeType LIST
-
BOOLEAN
public static final AttributeType BOOLEAN
-
TASKBOT
public static final AttributeType TASKBOT
-
WINDOW
public static final AttributeType WINDOW
-
TABLE
public static final AttributeType TABLE
-
CREDENTIAL
public static final AttributeType CREDENTIAL
-
KEYPRESS
public static final AttributeType KEYPRESS
-
DATETIME
public static final AttributeType DATETIME
-
VARIABLEMAP
public static final AttributeType VARIABLEMAP
-
COORDINATE
public static final AttributeType COORDINATE
-
IMAGE
public static final AttributeType IMAGE
-
REGION
public static final AttributeType REGION
-
PROPERTIES
public static final AttributeType PROPERTIES
-
-
Method Detail
-
values
public static AttributeType[] 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 (AttributeType c : AttributeType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AttributeType 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
-
-