final case class BigDecimalParseSettings(mathContext: MathContext = MathContext.DECIMAL128, scaleLimit: Int, digitsLimit: Int) extends BigDecimalParseConfig with Product with Serializable
- Alphabetic
- By Inheritance
- BigDecimalParseSettings
- Serializable
- Product
- Equals
- BigDecimalParseConfig
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new BigDecimalParseSettings(mathContext: MathContext = MathContext.DECIMAL128, scaleLimit: Int, digitsLimit: Int)
Value Members
- val digitsLimit: Int
How many digits are accepted, also related to the math context used.
How many digits are accepted, also related to the math context used. The default value is . This can be set using the JsonConfig.digitsLimitProperty system property.
- Definition Classes
- → BigDecimalParseConfig
- val mathContext: MathContext
The MathContext used when parsing, which will be "decimal32", "decimal64", "decimal128" (default), or "unlimited".
The MathContext used when parsing, which will be "decimal32", "decimal64", "decimal128" (default), or "unlimited". This can be set using the JsonConfig.mathContextProperty system property.
- Definition Classes
- → BigDecimalParseConfig
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val scaleLimit: Int
Limits the scale, and it is related to the math context used.
Limits the scale, and it is related to the math context used. The default value is . This can be set using the JsonConfig.scaleLimitProperty system property.
- Definition Classes
- → BigDecimalParseConfig
(Since version 2.9.4) Use BigDecimalParseConfig instead