Constructor. @param value big decimal value @return value
(final BigDecimal value)
| 77 | * @return value |
| 78 | */ |
| 79 | public static Dec get(final BigDecimal value) { |
| 80 | return value.signum() == 0 ? ZERO : new Dec(value); |
| 81 | } |
| 82 | |
| 83 | @Override |
| 84 | public byte[] string() { |
no outgoing calls