Lines Matching full:numbers
61 * The RuleBasedNumberFormat class formats numbers according to a set of rules. This number formatter is
80 * In a typical spellout rule set, the first twenty rules are the words for the numbers from
86 * <p>For larger numbers, we can use the preceding set of rules to format the ones place, and
100 * to all numbers from its own base value to one less than the next rule's base value. The
107 * <p>For even larger numbers, we can actually look up several parts of the number in the
143 * Notice also that the size of the major groupings in large numbers is controlled by the
144 * spacing of the rules: because in English we group numbers by thousand, the higher rules
178 * <p>The above syntax suffices only to format positive integers. To format negative numbers,
184 * where the base value would be. This rule is used to format all negative numbers. the
188 * <p>We also add a special rule called a <em>fraction rule </em>for numbers with fractional
196 * fractional part is formatted as a series of single-digit numbers (e.g., 123.456 would be
213 * are <em>public:</em> the caller can specify that they be used to format and parse numbers.