Enum NumberFormatOptions.DigitGroupMode
- java.lang.Object
-
- java.lang.Enum<NumberFormatOptions.DigitGroupMode>
-
- de.xima.fc.form.common.number_format.NumberFormatOptions.DigitGroupMode
-
- All Implemented Interfaces:
com.alibaba.fastjson.serializer.JSONSerializable
,Serializable
,Comparable<NumberFormatOptions.DigitGroupMode>
- Enclosing class:
- NumberFormatOptions
public static enum NumberFormatOptions.DigitGroupMode extends Enum<NumberFormatOptions.DigitGroupMode> implements com.alibaba.fastjson.serializer.JSONSerializable
How to group digits in the integer part of the number.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description GROUPS_OF_FOUR
Groups digits in quadruplets, e.g.GROUPS_OF_THREE
Groups digits in triplets, e.g.GROUPS_OF_TWO
Groups digits in pairs, e.g.GROUPS_OF_TWO_LAST_THREE
Groups digits in pairs, but the last group by 3, e.g.GROUPS_OF_TWO_THREE_EVERY_THIRD
Groups digits in pairs, but every third group by 3, e.g.UNGROUPED
Do not group digits, e.g.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static NumberFormatOptions.DigitGroupMode
fromString(String value)
Finds the enum constant corresponding to the given string value, seevalue()
.String
toString()
String
value()
Gets the string value of this digit group mode.static NumberFormatOptions.DigitGroupMode
valueOf(String name)
Returns the enum constant of this type with the specified name.static NumberFormatOptions.DigitGroupMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.void
write(com.alibaba.fastjson.serializer.JSONSerializer serializer, Object fieldName, Type fieldType, int features)
-
-
-
Enum Constant Detail
-
UNGROUPED
public static final NumberFormatOptions.DigitGroupMode UNGROUPED
Do not group digits, e.g.99999999
.
-
GROUPS_OF_TWO
public static final NumberFormatOptions.DigitGroupMode GROUPS_OF_TWO
Groups digits in pairs, e.g.99,99,99,99
.
-
GROUPS_OF_TWO_LAST_THREE
public static final NumberFormatOptions.DigitGroupMode GROUPS_OF_TWO_LAST_THREE
Groups digits in pairs, but the last group by 3, e.g.99,99,99,999
.
-
GROUPS_OF_TWO_THREE_EVERY_THIRD
public static final NumberFormatOptions.DigitGroupMode GROUPS_OF_TWO_THREE_EVERY_THIRD
Groups digits in pairs, but every third group by 3, e.g.99,999,99,99,999
.
-
GROUPS_OF_THREE
public static final NumberFormatOptions.DigitGroupMode GROUPS_OF_THREE
Groups digits in triplets, e.g.999,999,999
.
-
GROUPS_OF_FOUR
public static final NumberFormatOptions.DigitGroupMode GROUPS_OF_FOUR
Groups digits in quadruplets, e.g.9999,9999
.
-
-
Method Detail
-
values
public static NumberFormatOptions.DigitGroupMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (NumberFormatOptions.DigitGroupMode c : NumberFormatOptions.DigitGroupMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NumberFormatOptions.DigitGroupMode valueOf(String name)
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
public String toString()
- Overrides:
toString
in classEnum<NumberFormatOptions.DigitGroupMode>
-
value
public String value()
Gets the string value of this digit group mode.- Returns:
- The string value of this digit group mode.
-
write
public void write(com.alibaba.fastjson.serializer.JSONSerializer serializer, Object fieldName, Type fieldType, int features) throws IOException
- Specified by:
write
in interfacecom.alibaba.fastjson.serializer.JSONSerializable
- Throws:
IOException
-
fromString
public static NumberFormatOptions.DigitGroupMode fromString(String value)
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
null
if no such constant exists.
-
-