Enum Table.TableDragMode

    • Enum Constant Detail

      • NONE

        public static final Table.TableDragMode NONE
        Deprecated.
        Table does not start drag and drop events. HTM5 style events started by browser may still happen.
      • ROW

        public static final Table.TableDragMode ROW
        Deprecated.
        Table starts drag with a one row only.
      • MULTIROW

        public static final Table.TableDragMode MULTIROW
        Deprecated.
        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()
        Deprecated.
        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)
        Deprecated.
        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