com.hp.lft.sdk.winforms

Enum GridType

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


    public enum GridType
    extends java.lang.Enum<GridType>
    Represents supported custom grid types by the ITable TO.
    • Method Summary

      Modifier and TypeMethod and Description
      static GridTypevalueOf(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static GridType[]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

      • 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 Detail

      • values

        public static GridType[] 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 (GridType c : GridType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static GridType valueOf(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null