final case class BigDecimalSerializerSettings(minPlain: BigDecimal, maxPlain: BigDecimal) extends BigDecimalSerializerConfig with Product with Serializable
- Alphabetic
- By Inheritance
- BigDecimalSerializerSettings
- Serializable
- Product
- Equals
- BigDecimalSerializerConfig
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new BigDecimalSerializerSettings(minPlain: BigDecimal, maxPlain: BigDecimal)
Value Members
- val maxPlain: BigDecimal
Maximum magnitude of BigDecimal to write out as a plain string.
Maximum magnitude of BigDecimal to write out as a plain string. Defaults to . This can be set using the JsonConfig.maxPlainProperty system property.
- Definition Classes
- → BigDecimalSerializerConfig
- val minPlain: BigDecimal
Minimum magnitude of BigDecimal to write out as a plain string.
Minimum magnitude of BigDecimal to write out as a plain string. Defaults to . This can be set using the JsonConfig.minPlainProperty system property.
- Definition Classes
- → BigDecimalSerializerConfig
- def preserveZeroDecimal: Boolean
True to preserve a zero decimal , or false to drop them (the default).
True to preserve a zero decimal , or false to drop them (the default). For example, 1.00 will be serialized as 1 if false or 1.0 if true (only a single zero is preserved). Other trailing zeroes will be dropped regardless of this value. For example, 1.1000 will always be serialized as 1.1. This can be set using the JsonConfig.preserveZeroDecimalProperty system property.
- Definition Classes
- → BigDecimalSerializerConfig
- def productElementNames: Iterator[String]
- Definition Classes
- Product
(Since version 2.9.4) Use BigDecimalSerializerConfig instead