else
{
final ExpressionRuntime runtime = getRuntime();
final Locale locale = runtime.getResourceBundleFactory().getLocale();
final FastDecimalFormat fastPercent = new FastDecimalFormat(FastDecimalFormat.TYPE_PERCENT, locale);
final FastDecimalFormat fastInteger = new FastDecimalFormat(FastDecimalFormat.TYPE_INTEGER, locale);
final DecimalFormat numFormat = new DecimalFormat(fastInteger.getPattern(), new DecimalFormatSymbols(locale));
numFormat.setRoundingMode(RoundingMode.HALF_UP);
final DecimalFormat percentFormat = new DecimalFormat(fastPercent.getPattern(), new DecimalFormatSymbols(locale));
percentFormat.setRoundingMode(RoundingMode.HALF_UP);