174175176177178179180
* * @param d the <code>double</code> to be converted. * @return a string representation of the argument. */ public static String toString(double d) { return new FloatingDecimal(d).toJavaFormatString(); }
673674675676677678679680
* * @param d a <code>double</code>. * @return a reference to this object. */ public AbstractStringBuilder append(double d) { new FloatingDecimal(d).appendTo(this); return this; }
690691692693694695696697
* * @param f a <code>float</code>. * @return a reference to this object. */ public StringBuilderOpt append(float f) { new FloatingDecimal(f).appendTo(this); return this; }
706707708709710711712713
* * @param d a <code>double</code>. * @return a reference to this object. */ public StringBuilderOpt append(double d) { new FloatingDecimal(d).appendTo(this); return this; }
652653654655656657658659
* * @param f a {@code float}. * @return a reference to this object. */ public AbstractStringBuilder append(float f) { new FloatingDecimal(f).appendTo(this); return this; }
669670671672673674675676
* * @param d a {@code double}. * @return a reference to this object. */ public AbstractStringBuilder append(double d) { new FloatingDecimal(d).appendTo(this); return this; }
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(); }
191192193194195196197
* * @param d the {@code double} to be converted. * @return a string representation of the argument. */ public static String toString(double d) { return new FloatingDecimal(d).toJavaFormatString(); }