Enum Class Cell.CellType

java.lang.Object
java.lang.Enum<Cell.CellType>
ch.rabanti.nanoxlsx4j.Cell.CellType
All Implemented Interfaces:
Serializable, Comparable<Cell.CellType>, Constable
Enclosing class:
Cell

public static enum Cell.CellType extends Enum<Cell.CellType>
Enum defines the basic data types of a cell
  • Enum Constant Details

    • STRING

      public static final Cell.CellType STRING
      Type for single characters and strings
    • NUMBER

      public static final Cell.CellType NUMBER
      Type for all numeric types (long, short, byte, integer, float, double and BigDecimal)
    • DATE

      public static final Cell.CellType DATE
      Type for dates and times (Note: Dates before 1900-01-01 are not allowed)
    • TIME

      public static final Cell.CellType TIME
      Type for times (Note: Internally handled as OAdate, represented by LocalTime
    • BOOL

      public static final Cell.CellType BOOL
      Type for boolean
    • FORMULA

      public static final Cell.CellType FORMULA
      Type for Formulas (The cell will be handled differently)
    • EMPTY

      public static final Cell.CellType EMPTY
      Type for empty cells. This type is only used for merged cells (all cells except the first of the cell range)
    • DEFAULT

      public static final Cell.CellType DEFAULT
      Default Type, not specified
  • Method Details

    • values

      public static Cell.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 Cell.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