Home | History | Annotate | Download | only in number

Lines Matching defs:string

42      * Format the given byte, short, int, or long to a string using the settings specified in the NumberFormatter fluent
47 * @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.
70 * Format the given {@link BigInteger}, {@link BigDecimal}, or other {@link Number} to a string using the settings
75 * @return A FormattedNumber object; call .toString() to get the string.
84 * Format the given {@link Measure} or {@link CurrencyAmount} to a string using the settings specified in the
93 * @return A FormattedNumber object; call .toString() to get the string.
135 NumberStringBuilder string = new NumberStringBuilder();
139 micros = compiled.apply(fq, string);
141 micros = compiled.apply(fq, string);
143 micros = NumberFormatterImpl.applyStatic(macros, fq, string);
145 return new FormattedNumber(string, fq, micros);