public enum AttributeType extends java.lang.Enum<AttributeType>
Enum Constant and Description |
---|
BOOLEAN |
CHECKBOX |
CODE |
CONDITIONAL |
CREDENTIAL |
DICTIONARY |
FILE |
GROUP |
ITERATOR |
KEYPRESS |
LIST |
NUMBER |
RADIO |
REGEX |
SELECT |
TABLE |
TABS |
TASKBOT |
TEXT |
TEXTAREA |
UNKNOWN |
VARIABLE |
WINDOW |
Modifier and Type | Method and 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.
|
public static final AttributeType UNKNOWN
public static final AttributeType TEXT
public static final AttributeType NUMBER
public static final AttributeType CHECKBOX
public static final AttributeType SELECT
public static final AttributeType RADIO
public static final AttributeType FILE
public static final AttributeType ITERATOR
public static final AttributeType CONDITIONAL
public static final AttributeType VARIABLE
public static final AttributeType REGEX
public static final AttributeType TEXTAREA
public static final AttributeType CODE
public static final AttributeType GROUP
public static final AttributeType TABS
public static final AttributeType DICTIONARY
public static final AttributeType LIST
public static final AttributeType BOOLEAN
public static final AttributeType TASKBOT
public static final AttributeType WINDOW
public static final AttributeType TABLE
public static final AttributeType CREDENTIAL
public static final AttributeType KEYPRESS
public static AttributeType[] values()
for (AttributeType c : AttributeType.values()) System.out.println(c);
public static AttributeType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null