Enum Class GridSelectionMode

java.lang.Object
java.lang.Enum<GridSelectionMode>
com.hp.lft.sdk.sap.gui.GridSelectionMode
All Implemented Interfaces:
Serializable, Comparable<GridSelectionMode>, java.lang.constant.Constable

public enum GridSelectionMode extends Enum<GridSelectionMode>
The possible selections in a grid.
  • Enum Constant Details

    • ROWS_AND_COLUMNS

      public static final GridSelectionMode ROWS_AND_COLUMNS
      Only rows and columns can be selected; individual cells cannot be selected.
    • LISTBOX_SINGLE

      public static final GridSelectionMode LISTBOX_SINGLE
      Only one row can be selected.
    • LISTBOX_MULTIPLE

      public static final GridSelectionMode LISTBOX_MULTIPLE
      One or more rows can be selected.
    • FREE

      public static final GridSelectionMode FREE
      Any selection can be made.
  • Method Details

    • values

      public static GridSelectionMode[] 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 GridSelectionMode 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