public static enum UIEvent.Type extends java.lang.Enum<UIEvent.Type>
Enum Constant and Description |
---|
Action
Others.
|
DragDrop |
DragEnter
Drag events.
|
DragExit |
DragGesture
DragSource events.
|
DragOver |
DragSourceEnd |
DragSourceEnter |
DragSourceExit |
DragSourceOver |
FocusGained
Focus events.
|
FocusLost |
KeyFinished |
KeyPressed
Key events.
|
KeyReleased |
KeyTyped |
MouseClicked |
MouseDragged |
MouseEntered
Mouse move events.
|
MouseExited |
MouseFinished |
MouseMoved |
MousePressed
Mouse events.
|
MouseReleased |
PropertyChange |
Selection |
Timer |
ValueChange |
Modifier and Type | Method and Description |
---|---|
static UIEvent.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UIEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UIEvent.Type KeyPressed
public static final UIEvent.Type KeyReleased
public static final UIEvent.Type KeyTyped
public static final UIEvent.Type KeyFinished
public static final UIEvent.Type MousePressed
public static final UIEvent.Type MouseDragged
public static final UIEvent.Type MouseReleased
public static final UIEvent.Type MouseClicked
public static final UIEvent.Type MouseFinished
public static final UIEvent.Type MouseEntered
public static final UIEvent.Type MouseMoved
public static final UIEvent.Type MouseExited
public static final UIEvent.Type DragEnter
public static final UIEvent.Type DragOver
public static final UIEvent.Type DragExit
public static final UIEvent.Type DragDrop
public static final UIEvent.Type DragGesture
public static final UIEvent.Type DragSourceEnter
public static final UIEvent.Type DragSourceOver
public static final UIEvent.Type DragSourceExit
public static final UIEvent.Type DragSourceEnd
public static final UIEvent.Type FocusGained
public static final UIEvent.Type FocusLost
public static final UIEvent.Type Action
public static final UIEvent.Type ValueChange
public static final UIEvent.Type PropertyChange
public static final UIEvent.Type Selection
public static final UIEvent.Type Timer
public static UIEvent.Type[] values()
for (UIEvent.Type c : UIEvent.Type.values()) System.out.println(c);
public static UIEvent.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