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