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