public final class BigDecimalUtils extends Object
BigDecimal
handling.Modifier and Type | Method and Description |
---|---|
static BigDecimal |
divide(BigDecimal dividend,
BigDecimal divisor)
Divides two
BigDecimal values. |
public static BigDecimal divide(BigDecimal dividend, BigDecimal divisor)
BigDecimal
values.
If running on Java 1.5 or newer, Java15BigDecimalHandler
is used to divide
the values. Otherwise, the operation is delegated to Java14BigDecimalHandler
.
dividend
- the dividenddivisor
- the divisorBigDecimalHandler
instanceCopyright © 2015. All rights reserved.