Enum Class DataGrid.ColumnResizeMode

java.lang.Object
java.lang.Enum<DataGrid.ColumnResizeMode>
io.jmix.ui.component.DataGrid.ColumnResizeMode
All Implemented Interfaces:
Serializable, Comparable<DataGrid.ColumnResizeMode>, Constable
Enclosing interface:
DataGrid<E>

public static enum DataGrid.ColumnResizeMode extends Enum<DataGrid.ColumnResizeMode>
  • Enum Constant Details

    • ANIMATED

      public static final DataGrid.ColumnResizeMode ANIMATED
      When column resize mode is set to Animated, columns are resized as they are dragged.
    • SIMPLE

      public static final DataGrid.ColumnResizeMode SIMPLE
      When column resize mode is set to Simple, dragging to resize a column will show a marker, and the column will resize only after the mouse button or touch is released.
  • Method Details

    • values

      public static DataGrid.ColumnResizeMode[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static DataGrid.ColumnResizeMode valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null