com.vaadin.ui.
Enum Table.TableDragMode
java.lang.Object
java.lang.Enum<Table.TableDragMode>
com.vaadin.ui.Table.TableDragMode
All Implemented Interfaces:
Enclosing class:
- extends Enum<Table.TableDragMode>
public static enum Table.TableDragMode
Modes that Table support as drag sourse.
Enum Constant Summary | |
---|---|
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. |
Method Summary | |
---|---|
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're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
NONE
public static final Table.TableDragMode NONE
Table does not start drag and drop events. HTM5 style events started by browser may still happen.
ROW
public static final Table.TableDragMode ROW
Table starts drag with a one row only.
MULTIROW
public static final Table.TableDragMode MULTIROW
Table drags selected rows, if drag starts on a selected rows. Else it starts like in ROW mode. Note, that in Transferable there will still be only the row on which the drag started, other dragged rows need to be checked from the source Table.
Method Detail |
---|
values
public static final Table.TableDragMode[] values()
- Returns:
- an array containing the constants of this enum type, in the order they're declared
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(Table.TableDragMode c : Table.TableDragMode.values())
System.out.println(c);
valueOf
public static Table.TableDragMode valueOf(String name)
- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified name
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)