Package bld.common.spreadsheet.constant
Enum ColumnDateFormat
- All Implemented Interfaces:
Serializable,Comparable<ColumnDateFormat>
The Enum ColumnDateFormat.
ColumnDateFormat is used to set the date format. It is used on the following annotation
ColumnDateFormat is used to set the date format. It is used on the following annotation
ExcelDate.-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe dd mm yyyy.The dd mm yyyy hh mm ss.The hh mm.The hh mm ss.The parameter.The yyyy mm dd.The yyyy mm dd hh mm ss. -
Method Summary
Modifier and TypeMethodDescriptiongetValue()Gets the value.static ColumnDateFormatReturns the enum constant of this type with the specified name.static ColumnDateFormat[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
DD_MM_YYYY
The dd mm yyyy. -
DD_MM_YYYY_HH_MM_SS
The dd mm yyyy hh mm ss. -
YYYY_MM_DD
The yyyy mm dd. -
YYYY_MM_DD_HH_MM_SS
The yyyy mm dd hh mm ss. -
HH_MM_SS
The hh mm ss. -
HH_MM
The hh mm. -
PARAMETER
The parameter.
This option is set on properties file
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
Gets the value.- Returns:
- the value
-