public static enum Table.TableDragMode extends Enum<Table.TableDragMode>
Enum Constant and Description |
---|
MULTIROW
Table drags selected rows, if drag starts on a selected rows.
|
NONE
Table does not start drag and drop events.
|
ROW
Table starts drag with a one row only.
|
Modifier and Type | Method and Description |
---|---|
static Table.TableDragMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Table.TableDragMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Table.TableDragMode NONE
public static final Table.TableDragMode ROW
public static final Table.TableDragMode MULTIROW
public static Table.TableDragMode[] values()
for (Table.TableDragMode c : Table.TableDragMode.values()) System.out.println(c);
public static Table.TableDragMode 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.