Home | History | Annotate | Download | only in number

Lines Matching defs:string

41      * Format the given byte, short, int, or long to a string using the settings specified in the NumberFormatter fluent
46 * @return A FormattedNumber object; call .toString() to get the string.
56 * Format the given float or double to a string using the settings specified in the NumberFormatter fluent setting
61 * @return A FormattedNumber object; call .toString() to get the string.
71 * Format the given {@link BigInteger}, {@link BigDecimal}, or other {@link Number} to a string using the settings
76 * @return A FormattedNumber object; call .toString() to get the string.
86 * Format the given {@link Measure} or {@link CurrencyAmount} to a string using the settings specified in the
95 * @return A FormattedNumber object; call .toString() to get the string.
138 NumberStringBuilder string = new NumberStringBuilder();
142 micros = compiled.apply(fq, string);
144 micros = compiled.apply(fq, string);
146 micros = NumberFormatterImpl.applyStatic(macros, fq, string);
148 return new FormattedNumber(string, fq, micros);