public enum DropLocation extends Enum<DropLocation>
| Enum Constant and Description |
|---|
ABOVE
Drop above or before the row.
|
BELOW
Drop below or after the row.
|
EMPTY
Dropping into an empty grid, or to the empty area below the grid rows
when
DropMode.ON_TOP is used. |
ON_TOP
Drop on top of the row.
|
| Modifier and Type | Method and Description |
|---|---|
static DropLocation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DropLocation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DropLocation ON_TOP
public static final DropLocation ABOVE
public static final DropLocation BELOW
public static final DropLocation EMPTY
DropMode.ON_TOP is used.public static DropLocation[] values()
for (DropLocation c : DropLocation.values()) System.out.println(c);
public static DropLocation 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 © 2017 Vaadin Ltd. All rights reserved.