Among the changes in jsr13 is the introduction of a RoundinMode enum class to replace uses of an integer enum pattern of rounding modes defined in BigDecimal. The initial jsr13 proposal added a parallel method taking a RoundingMode object instead of an integer for one of the three uses of rounding mode integers as parameters. The parallel method added was setScale; this bug is to add parallel methods for the other two uses; i.e. augment
divide(BigDecimal divisor, int roundingMode)
divide(BigDecimal divisor, int scale, int roundingMode)
with
divide(BigDecimal divisor, RoundingMode)
divide(BigDecimal divisor, int scale, RoundingMode)