sealed trait BigDecimalParseConfig extends AnyRef
- Alphabetic
- By Inheritance
- BigDecimalParseConfig
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Abstract Value Members
- abstract def 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.
- abstract def 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.
- abstract def 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.
Parse and serialization settings for BigDecimals. Defines limits that will be used when parsing the BigDecimals, like how many digits are accepted.