Home | History | Annotate | Download | only in text

Lines Matching refs:numberFormat

59      * @param numberFormat used to actually format the number.
60 * @param pluralRules uses the number and the numberFormat to determine what plural
64 public String format(double number, NumberFormat numberFormat, PluralRules pluralRules) {
65 String formatStr = numberFormat.format(number);
66 StandardPlural p = selectPlural(number, numberFormat, pluralRules);
94 public static StandardPlural selectPlural(double number, NumberFormat numberFormat, PluralRules rules) {
96 if (numberFormat instanceof DecimalFormat) {
97 pluralKeyword = rules.select(((DecimalFormat) numberFormat).getFixedDecimal(number));
108 Number number, NumberFormat fmt, PluralRules rules,