Enum Class GridType

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

public enum GridType extends Enum<GridType>
Represents supported custom grid types by the ITable TO.
  • Enum Constant Details

    • UNKNOWN

      public static final GridType UNKNOWN
      Unknown grid type.
    • DATA_GRID

      public static final GridType DATA_GRID
      A Microsoft DataGrid.
    • DATA_GRID_VIEW

      public static final GridType DATA_GRID_VIEW
      A Microsoft DataGridView.
    • C1_FLEX_GRID

      public static final GridType C1_FLEX_GRID
      A ComponentOne C1FlexGrid.
    • C1_TRUE_DB_GRID

      public static final GridType C1_TRUE_DB_GRID
      A ComponentOne C1TrueDBGrid.
    • ULTRA_WIN_GRID

      public static final GridType ULTRA_WIN_GRID
      An Infragistics UltraWinGrid.
    • XTRA_GRID

      public static final GridType XTRA_GRID
      A DevExpress XtraGrid.
  • Method Details

    • values

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