public static enum DndCommandFactory.DropGesture extends Enum<DndCommandFactory.DropGesture>
Enum Constant and Description |
---|
AfterNode
The source is released slightly after the target
|
BeforeNode
The source is released slightly before the target
|
OnNode
The source is released precisely on the target
|
Modifier and Type | Method and Description |
---|---|
static DndCommandFactory.DropGesture |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DndCommandFactory.DropGesture[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DndCommandFactory.DropGesture OnNode
public static final DndCommandFactory.DropGesture BeforeNode
public static final DndCommandFactory.DropGesture AfterNode
public static DndCommandFactory.DropGesture[] values()
for (DndCommandFactory.DropGesture c : DndCommandFactory.DropGesture.values()) System.out.println(c);
public static DndCommandFactory.DropGesture 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 © 2018. All Rights Reserved.