Enum Class IExcelCell.CellType

java.lang.Object
java.lang.Enum<IExcelCell.CellType>
com.mendix.modules.exportmanager.interfaces.excel.IExcelCell.CellType
All Implemented Interfaces:
Serializable, Comparable<IExcelCell.CellType>, Constable
Enclosing interface:
IExcelCell

public static enum IExcelCell.CellType extends Enum<IExcelCell.CellType>
Defines the supported Excel cell types.
  • Enum Constant Details

    • BOOLEAN

      public static final IExcelCell.CellType BOOLEAN
      The type for a cell with Boolean values.
    • NUMERIC

      public static final IExcelCell.CellType NUMERIC
      The type for a cell with numeric values.
    • STRING

      public static final IExcelCell.CellType STRING
      The type for a cell with textual values.
    • DATE

      public static final IExcelCell.CellType DATE
      The type for a cell with date/time values.
  • Method Details

    • values

      public static IExcelCell.CellType[] 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 IExcelCell.CellType 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