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.
Since:
8.2.2
  • Enum Constant Details

  • Method Details

    • values

      public static NumberFormatOptions.DecimalPaddingMode[] 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

      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 name
      NullPointerException - if the argument is null
    • toString

      public String toString()
      Overrides:
      toString in class Enum<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:
      write in interface com.alibaba.fastjson.serializer.JSONSerializable
      Throws:
      IOException
    • fromString

      public static NumberFormatOptions.DecimalPaddingMode fromString(String value)
      Finds the enum constant corresponding to the given string value, see value().
      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.