public static enum DragLayerEvent.ID extends Enum<DragLayerEvent.ID>
Enum Constant and Description |
---|
DRAG_FINISHED
An enum value used to indicate that a drag operation has finished.
|
DRAG_ONGOING
An enum value used to indicate that a drag operation is currently
going on.
|
DRAG_STARTED
An enum value used to indicate that a drag operation has started.
|
Modifier and Type | Method and Description |
---|---|
static DragLayerEvent.ID |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DragLayerEvent.ID[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DragLayerEvent.ID DRAG_STARTED
public static final DragLayerEvent.ID DRAG_FINISHED
public static final DragLayerEvent.ID DRAG_ONGOING
public static DragLayerEvent.ID[] values()
for (DragLayerEvent.ID c : DragLayerEvent.ID.values()) System.out.println(c);
public static DragLayerEvent.ID 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 © 2006–2016 Dirk Lemmermann Software & Consulting. All rights reserved.