public enum DispatchDragEventType extends Enum<DispatchDragEventType>
| Enum Constant and Description |
|---|
DRAG_CANCEL |
DRAG_ENTER |
DRAG_OVER |
DROP |
| Modifier and Type | Method and Description |
|---|---|
static DispatchDragEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DispatchDragEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DispatchDragEventType DRAG_ENTER
public static final DispatchDragEventType DRAG_OVER
public static final DispatchDragEventType DROP
public static final DispatchDragEventType DRAG_CANCEL
public static DispatchDragEventType[] values()
for (DispatchDragEventType c : DispatchDragEventType.values()) System.out.println(c);
public static DispatchDragEventType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021 Kenan Klisura. All rights reserved.