Formatter.BigDecimalLayoutForm

  • Formatter.BigDecimalLayoutForm is an enum used for formatting BigDecimal values in Java.

  • It provides two formatting options: DECIMAL_FLOAT for decimal representation and SCIENTIFIC for scientific notation.

  • This enum inherits methods from java.lang.Enum, java.lang.Object, and java.lang.Comparable for object comparison and manipulation.

public static final enum Formatter.BigDecimalLayoutForm extends Enum<Formatter.BigDecimalLayoutForm>

Enum for BigDecimal formatting.

Inherited Method Summary

Enum Values

public static final Formatter.BigDecimalLayoutForm DECIMAL_FLOAT

Format the BigDecimal as a decimal number.

public static final Formatter.BigDecimalLayoutForm SCIENTIFIC

Format the BigDecimal in computerized scientific notation.