Enum NumberFormatOptions.DecimalPaddingMode
- java.lang.Object
-
- java.lang.Enum<NumberFormatOptions.DecimalPaddingMode>
-
- de.xima.fc.form.common.number_format.NumberFormatOptions.DecimalPaddingMode
-
- All Implemented Interfaces:
com.alibaba.fastjson.serializer.JSONSerializable,Serializable,Comparable<NumberFormatOptions.DecimalPaddingMode>
- Enclosing class:
- NumberFormatOptions
public static enum NumberFormatOptions.DecimalPaddingMode extends Enum<NumberFormatOptions.DecimalPaddingMode> implements com.alibaba.fastjson.serializer.JSONSerializable
Whether to pad decimals with zeroes, up to the number of decimal places.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALWAYSAlways pad with zeroes.NEVERNever pad with zeroes.WHEN_FRACTIONALPad with zeros when the number has a fractional part.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static NumberFormatOptions.DecimalPaddingModefromString(String value)Finds the enum constant corresponding to the given string value, seevalue().StringtoString()Stringvalue()Gets the string value of this decimal padding mode.static NumberFormatOptions.DecimalPaddingModevalueOf(String name)Returns the enum constant of this type with the specified name.static NumberFormatOptions.DecimalPaddingMode[]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 Detail
-
ALWAYS
public static final NumberFormatOptions.DecimalPaddingMode ALWAYS
Always pad with zeroes. The number1.5will be displayed as1.50if the number of decimal places is 2.
-
NEVER
public static final NumberFormatOptions.DecimalPaddingMode NEVER
Never pad with zeroes. The number1.5will be displayed as1.5.
-
WHEN_FRACTIONAL
public static final NumberFormatOptions.DecimalPaddingMode WHEN_FRACTIONAL
Pad with zeros when the number has a fractional part. The number1will be displayed as1, the number1.5as1.50.
-
-
Method Detail
-
values
public static NumberFormatOptions.DecimalPaddingMode[] 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.DecimalPaddingMode c : NumberFormatOptions.DecimalPaddingMode.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.DecimalPaddingMode 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:
toStringin classEnum<NumberFormatOptions.DecimalPaddingMode>
-
value
public String value()
Gets the string value of this decimal padding mode.- Returns:
- The string value of this decimal padding mode.
-
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
public static NumberFormatOptions.DecimalPaddingMode 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
nullif no such constant exists.
-
-