()
| 1139 | * @return BigDecimal |
| 1140 | */ |
| 1141 | public BigDecimal toBigDecimal() { |
| 1142 | |
| 1143 | StringBuilder sb = new StringBuilder(); |
| 1144 | this.createNumber(sb); |
| 1145 | return new BigDecimal(sb.toString()); |
| 1146 | |
| 1147 | } |
| 1148 | |
| 1149 | /** |
| 1150 | * <p>Converts this machine time to its JSR-310-equivalent. </p> |
no test coverage detected