Class DataType

System.Object
EasyXLS.Constants.DataType

public class DataType extends System.Object
This class contains the constants for allowable cell data types.
  • Constant Summary

    Fields
    Modifier and Type
    Field
    Description
    const System.String
    A constant indicating that the data type is determined automatically.
    const System.String
    A constant indicating the "bool" data type.
    const System.String
    A constant indicating the "date" data type.
    const System.String
    A constant indicating the "error" data type.
    const System.String
    A constant indicating the numeric data type.
    const System.String
    A constant indicating the string data type.
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Methods inherited from class System.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • NUMERIC

      public const final System.String NUMERIC
      A constant indicating the numeric data type. Embedded value is "numeric".
      See Also:
      Constant Values
    • STRING

      public const final System.String STRING
      A constant indicating the string data type. Embedded value is "string".
      See Also:
      Constant Values
    • DATE

      public const final System.String DATE
      A constant indicating the "date" data type. Embedded value is "date".
      See Also:
      Constant Values
    • BOOLEAN

      public const final System.String BOOLEAN
      A constant indicating the "bool" data type. Embedded value is "bool".
      See Also:
      Constant Values
    • ERROR

      public const final System.String ERROR
      A constant indicating the "error" data type. Error data type is for a cell that contains one of the values: #N/A, #VALUE!, #REF!, #DIV/0!, #NUM!, #NAME? or #NULL!. Embedded value is "error".
      See Also:
      Constant Values
    • AUTOMATIC

      public const final System.String AUTOMATIC
      A constant indicating that the data type is determined automatically. It can be resource and time consuming. Embedded value is "automatic".
      See Also:
      Constant Values
  • Constructor Details

    • DataType

      public DataType()