@Deprecated public static enum Tree.TreeDragMode extends Enum<Tree.TreeDragMode>
| Enum Constant and Description |
|---|
NODE
Deprecated.
|
NONE
Deprecated.
When drag mode is NONE, dragging from Tree is not supported.
|
| Modifier and Type | Method and Description |
|---|---|
static Tree.TreeDragMode |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static Tree.TreeDragMode[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Tree.TreeDragMode NONE
public static final Tree.TreeDragMode NODE
public static Tree.TreeDragMode[] values()
for (Tree.TreeDragMode c : Tree.TreeDragMode.values()) System.out.println(c);
public static Tree.TreeDragMode 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 © 2019 Vaadin Ltd. All rights reserved.