Namespace EasyXLS.Constants
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
FieldsModifier and TypeFieldDescriptionconst System.StringA constant indicating that the data type is determined automatically.const System.StringA constant indicating the "bool" data type.const System.StringA constant indicating the "date" data type.const System.StringA constant indicating the "error" data type.const System.StringA constant indicating the numeric data type.const System.StringA constant indicating the string data type. -
Constructor Summary
Constructors -
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 NUMERICA constant indicating the numeric data type. Embedded value is "numeric".- See Also:
-
STRING
public const final System.String STRINGA constant indicating the string data type. Embedded value is "string".- See Also:
-
DATE
public const final System.String DATEA constant indicating the "date" data type. Embedded value is "date".- See Also:
-
BOOLEAN
public const final System.String BOOLEANA constant indicating the "bool" data type. Embedded value is "bool".- See Also:
-
ERROR
public const final System.String ERRORA 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:
-
AUTOMATIC
public const final System.String AUTOMATICA constant indicating that the data type is determined automatically. It can be resource and time consuming. Embedded value is "automatic".- See Also:
-
-
Constructor Details
-
DataType
public DataType()
-