protected static enum SikuliAction.ActionType extends java.lang.Enum<SikuliAction.ActionType>
Enum Constant and Description |
---|
CLICK |
DOUBLE_CLICK |
RIGHT_CLICK |
Modifier and Type | Method and Description |
---|---|
static SikuliAction.ActionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SikuliAction.ActionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SikuliAction.ActionType CLICK
public static final SikuliAction.ActionType DOUBLE_CLICK
public static final SikuliAction.ActionType RIGHT_CLICK
public static SikuliAction.ActionType[] values()
for (SikuliAction.ActionType c : SikuliAction.ActionType.values()) System.out.println(c);
public static SikuliAction.ActionType 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