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
-
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
-
FILE2
public static final AttributeType FILE2
-
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
-
PDFLOCATORMAP
public static final AttributeType PDFLOCATORMAP
-
EXCEPTION
public static final AttributeType EXCEPTION
-
UIOBJECT
public static final AttributeType UIOBJECT
-
RECORD
public static final AttributeType RECORD
-
HELP
public static final AttributeType HELP
-
FORM
public static final AttributeType FORM
-
FORMELEMENT
public static final AttributeType FORMELEMENT
-
WORKITEM
public static final AttributeType WORKITEM
-
ENTRYLIST
public static final AttributeType ENTRYLIST
-
DESKTOPOPERATIONSELECT
public static final AttributeType DESKTOPOPERATIONSELECT
-
DESKTOPOPERATIONBUTTON
public static final AttributeType DESKTOPOPERATIONBUTTON
-
SESSION
public static final AttributeType SESSION
-
RECORDPICKER
public static final AttributeType RECORDPICKER
-
TREE
public static final AttributeType TREE
-
BAPIOBJECT
public static final AttributeType BAPIOBJECT
-
-
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
-
-