equal
deleted
inserted
replaced
2570 /** |
2570 /** |
2571 * Returns a BigDecimal whose numerical value is equal to |
2571 * Returns a BigDecimal whose numerical value is equal to |
2572 * ({@code this} * 10<sup>n</sup>). The scale of |
2572 * ({@code this} * 10<sup>n</sup>). The scale of |
2573 * the result is {@code (this.scale() - n)}. |
2573 * the result is {@code (this.scale() - n)}. |
2574 * |
2574 * |
|
2575 * @param n the exponent power of ten to scale by |
|
2576 * @return a BigDecimal whose numerical value is equal to |
|
2577 * ({@code this} * 10<sup>n</sup>) |
2575 * @throws ArithmeticException if the scale would be |
2578 * @throws ArithmeticException if the scale would be |
2576 * outside the range of a 32-bit integer. |
2579 * outside the range of a 32-bit integer. |
2577 * |
2580 * |
2578 * @since 1.5 |
2581 * @since 1.5 |
2579 */ |
2582 */ |