Enum NumberFormatOptions.UnitSignPlacement
java.lang.Object
java.lang.Enum<NumberFormatOptions.UnitSignPlacement>
de.xima.fc.form.common.number_format.NumberFormatOptions.UnitSignPlacement
- All Implemented Interfaces:
com.alibaba.fastjson.serializer.JSONSerializable, Serializable, Comparable<NumberFormatOptions.UnitSignPlacement>
- Enclosing class:
NumberFormatOptions
public static enum NumberFormatOptions.UnitSignPlacement
extends Enum<NumberFormatOptions.UnitSignPlacement>
implements com.alibaba.fastjson.serializer.JSONSerializable
Where to place the unit sign, if any.
- Since:
- 8.2.2
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionPlace the unit sign after the number, e.g.Place the unit sign before the number, e.g. -
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 unit sign placement.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
-
BEFORE_NUMBER
Place the unit sign before the number, e.g.$1,234.56or€1.234,56. -
AFTER_NUMBER
Place the unit sign after the number, e.g.1,234.56$or1.234,56€.
-
-
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.UnitSignPlacement>
-
value
Gets the string value of this unit sign placement.- Returns:
- The string value of this unit sign placement.
-
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.
-