Package ch.rabanti.nanoxlsx4j.styles
Enum Class NumberFormat.FormatNumber
- All Implemented Interfaces:
Serializable
,Comparable<NumberFormat.FormatNumber>
,Constable
- Enclosing class:
- NumberFormat
Enum for the defined number formats
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionCustom Format (ID 164 and higher)Format: 0Format: 0.00%Format: 0.00E+00Format: # ?/?Format: # ??/??Format: m/d/yyyyFormat: d-mmm-yyFormat: d-mmmFormat: mmm-yyFormat: mm AM/PMFormat: h:mm:ss AM/PMFormat: 0.00Format: h:mmFormat: h:mm:ssFormat: m/d/yyyy h:mmFormat: #,##0Format: #,##0_);(#,##0)Format: #,##0_);[Red](#,##0)Format: #,##0.00_);(#,##0.00)Format: #,##0.00Format: #,##0.00_);[Red](#,##0.00)Format: mm:ssFormat: [h]:mm:ssFormat: mm:ss.0Format: ##0.0E+0Format: #Format: $#,##0_);($#,##0)Format: $#,##0_);[Red]($#,##0)Format: $#,##0.00_);($#,##0.00)Format: $#,##0.00_);[Red]($#,##0.00)Format: 0%No format / Default -
Method Summary
Modifier and TypeMethodDescriptionint
getValue()
Gets the numeric value of the enum entrystatic NumberFormat.FormatNumber
Returns the enum constant of this class with the specified name.static NumberFormat.FormatNumber[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
none
No format / Default -
format_1
Format: 0 -
format_2
Format: 0.00 -
format_3
Format: #,##0 -
format_4
Format: #,##0.00 -
format_5
Format: $#,##0_);($#,##0) -
format_6
Format: $#,##0_);[Red]($#,##0) -
format_7
Format: $#,##0.00_);($#,##0.00) -
format_8
Format: $#,##0.00_);[Red]($#,##0.00) -
format_9
Format: 0% -
format_10
Format: 0.00% -
format_11
Format: 0.00E+00 -
format_12
Format: # ?/? -
format_13
Format: # ??/?? -
format_14
Format: m/d/yyyy -
format_15
Format: d-mmm-yy -
format_16
Format: d-mmm -
format_17
Format: mmm-yy -
format_18
Format: mm AM/PM -
format_19
Format: h:mm:ss AM/PM -
format_20
Format: h:mm -
format_21
Format: h:mm:ss -
format_22
Format: m/d/yyyy h:mm -
format_37
Format: #,##0_);(#,##0) -
format_38
Format: #,##0_);[Red](#,##0) -
format_39
Format: #,##0.00_);(#,##0.00) -
format_40
Format: #,##0.00_);[Red](#,##0.00) -
format_45
Format: mm:ss -
format_46
Format: [h]:mm:ss -
format_47
Format: mm:ss.0 -
format_48
Format: ##0.0E+0 -
format_49
Format: # -
custom
Custom Format (ID 164 and higher)
-
-
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
-
getValue
public int getValue()Gets the numeric value of the enum entry- Returns:
- Numeric value of the enum entry
-