Package ch.rabanti.nanoxlsx4j.styles
Enum Class NumberFormat.NumberFormatEvaluation.FormatRange
java.lang.Object
java.lang.Enum<NumberFormat.NumberFormatEvaluation.FormatRange>
ch.rabanti.nanoxlsx4j.styles.NumberFormat.NumberFormatEvaluation.FormatRange
- All Implemented Interfaces:
Serializable
,Comparable<NumberFormat.NumberFormatEvaluation.FormatRange>
,Constable
- Enclosing class:
- NumberFormat.NumberFormatEvaluation
public static enum NumberFormat.NumberFormatEvaluation.FormatRange
extends Enum<NumberFormat.NumberFormatEvaluation.FormatRange>
Range or validity of the format number
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionCustom defined formats from 165 and higher.Format from 0 to 164 (with gaps)Probably invalid format numbers (e.g.Values between 0 and 164 that are not defined as enum value. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
defined_format
Format from 0 to 164 (with gaps) -
custom_format
Custom defined formats from 165 and higher. Although 164 is already custom, it is still defined as enum value -
invalid
Probably invalid format numbers (e.g. negative value) -
undefined
Values between 0 and 164 that are not defined as enum value. This may be caused by changes of the OOXML specifications or Excel versions that have encoded loaded files
-
-
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
-