Package com.independentsoft.office.odf
Enum Class CellValueType
- All Implemented Interfaces:
Serializable,Comparable<CellValueType>,Constable
Represents the cell value type.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionCell contains a boolean value encoded as true or false.Cell contains a numeric value and currency symbol.Cell contains a date value or date and time value.Cell contains a numeric value.NoneCell contains a numeric value.Cell contains a string value.Cell contains a time value of duration. -
Method Summary
Modifier and TypeMethodDescriptionstatic CellValueTypeReturns the enum constant of this class with the specified name.static CellValueType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
FLOAT
Cell contains a numeric value. -
PERCENTAGE
Cell contains a numeric value. -
CURRENCY
Cell contains a numeric value and currency symbol. -
DATE
Cell contains a date value or date and time value. -
TIME
Cell contains a time value of duration. -
BOOLEAN
Cell contains a boolean value encoded as true or false. -
STRING
Cell contains a string value. -
NONE
None
-
-
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
-