MessageFormat.java | 24 import java.text.Format; 57 * <p><code>MessageFormat</code> differs from the other <code>Format</code> 69 * <p>An argument might not specify any format type. In this case, 75 * Format object is created, cached and used. 81 * <p>After construction, a custom Format object can be set for 96 * (or using a custom Format object if one was set). 151 * a <code>Format</code> instance for the format element. The following 152 * table shows how the values map to Format instances. Combinations not 154 * be a valid pattern string for the Format subclass used 895 public final StringBuffer format(Object[] arguments, StringBuffer result, method in class:MessageFormat 898 format(arguments, null, new AppendableWrapper(result), pos); method 930 public final StringBuffer format(Map<String, Object> arguments, StringBuffer result, method in class:MessageFormat 932 format(null, arguments, new AppendableWrapper(result), pos); method 952 public static String format(String pattern, Object... arguments) { method in class:MessageFormat 970 public static String format(String pattern, Map<String, Object> arguments) { method in class:MessageFormat 1011 public final StringBuffer format(Object arguments, StringBuffer result, method in class:MessageFormat 1014 format(arguments, new AppendableWrapper(result), pos); method 1062 format(arguments, wrapper, null); method 1521 private void format(int msgStart, PluralSelectorContext pluralNumber, method in class:MessageFormat 1673 format(msgStart, pluralNumber, args, argsMap, nameValuePairs, dest, null); method 2031 private void format(Object arguments, AppendableWrapper result, FieldPosition fp) { method in class:MessageFormat 2033 format(null, (Map<String, Object>)arguments, result, fp); method 2035 format((Object[])arguments, null, result, fp); method 2046 private void format(Object[] arguments, Map<String, Object> argsMap, method in class:MessageFormat [all...] |