Package ch.rabanti.nanoxlsx4j
Enum Class ImportOptions.ColumnType
- All Implemented Interfaces:
Serializable
,Comparable<ImportOptions.ColumnType>
,Constable
- Enclosing class:
- ImportOptions
Column types to enforce during the import
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionCells are tried to be imported as numbers (enforcing BigDecimal)Cells are tried to be imported as booleansCells are tried to be imported as dates (Date).Cells are tried to be imported as numbers (enforcing double)Cells are tried to be imported as numbers (automatic determination of numeric type)Cells are all imported as strings, using the ToString() methodCells are tried to be imported as times (LocalTime) -
Method Summary
Modifier and TypeMethodDescriptionstatic ImportOptions.ColumnType
Returns the enum constant of this class with the specified name.static ImportOptions.ColumnType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
Numeric
Cells are tried to be imported as numbers (automatic determination of numeric type) -
Double
Cells are tried to be imported as numbers (enforcing double) -
BigDecimal
Cells are tried to be imported as numbers (enforcing BigDecimal) -
Date
Cells are tried to be imported as dates (Date). If values are provided as Strings, the String defined withImportOptions.setDateFormat(java.lang.String)
will be used as parsing pattern -
Time
Cells are tried to be imported as times (LocalTime) -
Bool
Cells are tried to be imported as booleans -
String
Cells are all imported as strings, using the ToString() method
-
-
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
-