Sets this Decimal256 to the specified 256-bit value and scale. @param hh the highest 64 bits (bits 192-255) @param hl the high 64 bits (bits 128-191) @param lh the mid 64 bits (bits 64-127) @param ll the low 64 bits (bits 0-63) @param scale the number of decimal places
(long hh, long hl, long lh, long ll, int scale)
| 1462 | * @param scale the number of decimal places |
| 1463 | */ |
| 1464 | public void of(long hh, long hl, long lh, long ll, int scale) { |
| 1465 | this.hh = hh; |
| 1466 | this.hl = hl; |
| 1467 | this.lh = lh; |
| 1468 | this.ll = ll; |
| 1469 | this.scale = scale; |
| 1470 | } |
| 1471 | |
| 1472 | /** |
| 1473 | * Sets this Decimal256 to the specified 128-bit value and scale. |