| Enum Constant and Description |
|---|
BUTTON_CLICK |
CHECK_STATE |
SELECT |
SLIDE |
TEXT_INPUT |
USERDATA |
| Modifier and Type | Field and Description |
|---|---|
java.lang.String |
apiName |
| Modifier and Type | Method and Description |
|---|---|
static Actions |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Actions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Actions BUTTON_CLICK
public static final Actions TEXT_INPUT
public static final Actions CHECK_STATE
public static final Actions SELECT
public static final Actions SLIDE
public static final Actions USERDATA
public static Actions[] values()
for (Actions c : Actions.values()) System.out.println(c);
public static Actions 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