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
Fields Modifier and Type Field Description const System.String
AUTOMATIC
A constant indicating that the data type is determined automatically.const System.String
BOOLEAN
A constant indicating the "bool" data type.const System.String
DATE
A constant indicating the "date" data type.const System.String
ERROR
A constant indicating the "error" data type.const System.String
NUMERIC
A constant indicating the numeric data type.const System.String
STRING
A constant indicating the string data type.
-
Constructor Summary
Constructors Constructor Description DataType()
-
-
-
Field Detail
-
NUMERIC
public const System.String NUMERIC
A constant indicating the numeric data type. Embedded value is "numeric".- See Also:
- Constant Values
-
STRING
public const System.String STRING
A constant indicating the string data type. Embedded value is "string".- See Also:
- Constant Values
-
DATE
public const System.String DATE
A constant indicating the "date" data type. Embedded value is "date".- See Also:
- Constant Values
-
BOOLEAN
public const System.String BOOLEAN
A constant indicating the "bool" data type. Embedded value is "bool".- See Also:
- Constant Values
-
ERROR
public const 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 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
-
-