Enum NumberFormatOptions.DigitGroupSeparator
java.lang.Object
java.lang.Enum<NumberFormatOptions.DigitGroupSeparator>
de.xima.fc.form.common.number_format.NumberFormatOptions.DigitGroupSeparator
- All Implemented Interfaces:
com.alibaba.fastjson.serializer.JSONSerializable, Serializable, Comparable<NumberFormatOptions.DigitGroupSeparator>
- Enclosing class:
NumberFormatOptions
public static enum NumberFormatOptions.DigitGroupSeparator
extends Enum<NumberFormatOptions.DigitGroupSeparator>
implements com.alibaba.fastjson.serializer.JSONSerializable
Separator to use between digit groups.
- Since:
- 8.2.2
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionUse an apostrophe as the digit group separator.Use an Arabic comma as the digit group separator.Use a comma as the digit group separator.Use a dot as the digit group separator.Use a narrow non-breaking space as the digit group separator.Use a non-breaking space as the digit group separator.Use an overdot as the digit group separator.Use a space as the digit group separator.Use a thin space as the digit group separator. -
Method Summary
Modifier and TypeMethodDescriptionfromString(String value) Finds the enum constant corresponding to the given string value, seevalue().toString()value()Gets the string value of this digit group separator.Returns the enum constant of this type with the specified name.values()Returns an array containing the constants of this enum type, in the order they are declared.voidwrite(com.alibaba.fastjson.serializer.JSONSerializer serializer, Object fieldName, Type fieldType, int features)
-
Enum Constant Details
-
COMMA
Use a comma as the digit group separator. -
DOT
Use a dot as the digit group separator. -
ARABIC_COMMA
Use an Arabic comma as the digit group separator. -
OVERDOT
Use an overdot as the digit group separator. -
APOSTROPHE
Use an apostrophe as the digit group separator. -
SPACE
Use a space as the digit group separator. -
THIN_SPACE
Use a thin space as the digit group separator. -
NARROW_NON_BREAKING_SPACE
Use a narrow non-breaking space as the digit group separator. -
NON_BREAKING_SPACE
Use a non-breaking space as the digit group separator.
-
-
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
-
toString
- Overrides:
toStringin classEnum<NumberFormatOptions.DigitGroupSeparator>
-
value
Gets the string value of this digit group separator.- Returns:
- The string value of this digit group separator.
-
write
public void write(com.alibaba.fastjson.serializer.JSONSerializer serializer, Object fieldName, Type fieldType, int features) throws IOException - Specified by:
writein interfacecom.alibaba.fastjson.serializer.JSONSerializable- Throws:
IOException
-
fromString
Finds the enum constant corresponding to the given string value, seevalue().- Parameters:
value- The string value to find the enum constant for.- Returns:
- The enum constant corresponding to the given string value, or
nullif no such constant exists.
-