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