Package ch.rabanti.nanoxlsx4j
Enum Class Cell.CellType
- All Implemented Interfaces:
Serializable
,Comparable<Cell.CellType>
,Constable
- Enclosing class:
- Cell
Enum defines the basic data types of a cell
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionType for booleanType for dates and times (Note: Dates before 1900-01-01 are not allowed)Default Type, not specifiedType for empty cells.Type for Formulas (The cell will be handled differently)Type for all numeric types (long, short, byte, integer, float, double and BigDecimal)Type for single characters and stringsType for times (Note: Internally handled as OAdate, represented byLocalTime
-
Method Summary
Modifier and TypeMethodDescriptionstatic Cell.CellType
Returns the enum constant of this class with the specified name.static Cell.CellType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
STRING
Type for single characters and strings -
NUMBER
Type for all numeric types (long, short, byte, integer, float, double and BigDecimal) -
DATE
Type for dates and times (Note: Dates before 1900-01-01 are not allowed) -
TIME
Type for times (Note: Internally handled as OAdate, represented byLocalTime
-
BOOL
Type for boolean -
FORMULA
Type for Formulas (The cell will be handled differently) -
EMPTY
Type for empty cells. This type is only used for merged cells (all cells except the first of the cell range) -
DEFAULT
Default Type, not specified
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-