org.sikuli.script
Enum SikuliAction.ActionType
java.lang.Object
java.lang.Enum<SikuliAction.ActionType>
org.sikuli.script.SikuliAction.ActionType
- All Implemented Interfaces:
- Serializable, Comparable<SikuliAction.ActionType>
- Enclosing class:
- SikuliAction
protected static enum SikuliAction.ActionType
- extends Enum<SikuliAction.ActionType>
CLICK
public static final SikuliAction.ActionType CLICK
DOUBLE_CLICK
public static final SikuliAction.ActionType DOUBLE_CLICK
RIGHT_CLICK
public static final SikuliAction.ActionType RIGHT_CLICK
values
public static SikuliAction.ActionType[] 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 (SikuliAction.ActionType c : SikuliAction.ActionType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static SikuliAction.ActionType valueOf(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:
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null