sealed trait BigDecimalSerializerConfig extends AnyRef

Source
JsonConfig.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BigDecimalSerializerConfig
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def 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.

  2. abstract def 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.

  3. abstract 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.