194195196197198199200
* * @param f the float to be converted. * @return a string representation of the argument. */ public static String toString(float f) { return new FloatingDecimal(f).toJavaFormatString(); }
653654655656657658659660
* * @param f a <code>float</code>. * @return a reference to this object. */ public AbstractStringBuilder append(float f) { new FloatingDecimal(f).appendTo(this); return this; }
669670671672673674675676
* * @param d a <code>double</code>. * @return a reference to this object. */ public AbstractStringBuilder append(double d) { new FloatingDecimal(d).appendTo(this); return this; }