public static enum Drag.Phase extends Enum<Drag.Phase>
Drag object.| Enum Constant and Description |
|---|
DROP |
ENTER |
INITIAL |
MOUSE_OUT |
MOVE |
START |
| Modifier and Type | Method and Description |
|---|---|
static Drag.Phase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Drag.Phase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Drag.Phase INITIAL
public static final Drag.Phase START
public static final Drag.Phase MOUSE_OUT
public static final Drag.Phase MOVE
public static final Drag.Phase ENTER
public static final Drag.Phase DROP
public static Drag.Phase[] values()
for (Drag.Phase c : Drag.Phase.values()) System.out.println(c);
public static Drag.Phase 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 © 2012 JBoss by Red Hat. All Rights Reserved.