public static enum DragEvent.Type extends Enum<DragEvent.Type>
| Enum Constant and Description |
|---|
End
Drag state.
|
Move
Drag state.
|
Start
Drag state.
|
| Modifier and Type | Method and Description |
|---|---|
static DragEvent.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DragEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DragEvent.Type Start
public static final DragEvent.Type Move
public static final DragEvent.Type End
public static DragEvent.Type[] values()
for (DragEvent.Type c : DragEvent.Type.values()) System.out.println(c);
public static DragEvent.Type 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 © 2011–2015 SWM. All rights reserved.