Home | History | Annotate | Download | only in util

Lines Matching defs:format

20 import java.text.Format;
30 public abstract class CompositeFormat extends Format {
36 * Create a default number format. The default number format is based on
39 * @return the default number format.
46 * Create a default number format. The default number format is based on
49 * @param locale the specific locale used by the format.
50 * @return the default number format specific to the given locale.
136 * @param format the number format used to parse normal, numeric values.
140 protected Number parseNumber(final String source, final NumberFormat format,
143 Number number = format.parse(source, pos);
192 * formatted using the formatting rules of <code>format</code>. There are
200 * @param value the double to format.
201 * @param format the format used.
207 protected StringBuffer formatDouble(final double value, final NumberFormat format,
215 format.format(value, toAppendTo, pos);