Package com.vaadin.ui
Enum Table.TableDragMode
- java.lang.Object
-
- java.lang.Enum<Table.TableDragMode>
-
- com.vaadin.ui.Table.TableDragMode
-
- All Implemented Interfaces:
Serializable
,Comparable<Table.TableDragMode>
- Enclosing class:
- Table
public static enum Table.TableDragMode extends Enum<Table.TableDragMode>
Modes that Table support as drag sourse.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method 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.
-
-
-
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 Table.TableDragMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Table.TableDragMode c : Table.TableDragMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Table.TableDragMode valueOf(String 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.)- 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 nameNullPointerException
- if the argument is null
-
-