Documentation for this section has not yet been entered.
Returns a string representation of this BigDecimal. No scientific notation is used. This methods adds zeros where necessary.
If this string representation is used to create a new instance, this instance is generally not identical to this as the precision changes.
x.equals(new BigDecimal(x.toPlainString()) usually returns false.
x.compareTo(new BigDecimal(x.toPlainString()) returns 0.