com.vaadin.ui
Enum Table.TableDragMode

java.lang.Object
  extended by java.lang.Enum<Table.TableDragMode>
      extended by 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.


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 are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
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 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 name
NullPointerException - if the argument is null


Copyright © 2000-2011 Vaadin Ltd. All Rights Reserved.