Parses a CharSequence decimal and store the result into the given Decimal256. @param cs is the CharSequence to be parsed @return the precision of the decimal
(CharSequence cs)
| 1592 | * @return the precision of the decimal |
| 1593 | */ |
| 1594 | public long ofString(CharSequence cs) throws NumericException { |
| 1595 | return ofString(cs, -1, -1); |
| 1596 | } |
| 1597 | |
| 1598 | /** |
| 1599 | * Parses a CharSequence decimal and store the result into the given Decimal256. |