blob: c466769a59d7d032c312909b73630e952c342047 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package freemarker.core;
import java.text.DecimalFormat;
import java.text.DecimalFormatSymbols;
import java.text.NumberFormat;
import freemarker.template.Configuration;
import freemarker.template.Version;
/**
* Corresponds to the behavior of {@code ?c} if
* {@link Configuration#Configuration(Version) incompatible_improvements} is between
* {@linkplain Configuration#VERSION_2_3_21 2.3.21} and {@linkplain Configuration#VERSION_2_3_31 2.3.31}.
* The only good reason for using this is strict backward-compatibility.
*
* <p><b>Experimental class!</b> This class is too new, and might will change over time. Therefore, for now
* constructor and most methods are not exposed outside FreeMarker, and so you can't create a custom implementation.
* The class itself and some members are exposed as they are needed for configuring FreeMarker.
*
* @see Default230CFormat
* @see JSONCFormat
*
* @since 2.3.32
*/
public final class Default2321CFormat extends AbstractLegacyCFormat {
public static final Default2321CFormat INSTANCE = new Default2321CFormat();
public static final String NAME = "default 2.3.21";
/**
* "c" number format as it was starting from Incompatible Improvements 2.3.21.
*/
private static final DecimalFormat LEGACY_NUMBER_FORMAT_PROTOTYPE = (DecimalFormat) Default230CFormat.LEGACY_NUMBER_FORMAT_PROTOTYPE.clone();
static {
DecimalFormatSymbols symbols = LEGACY_NUMBER_FORMAT_PROTOTYPE.getDecimalFormatSymbols();
symbols.setInfinity("INF");
symbols.setNaN("NaN");
LEGACY_NUMBER_FORMAT_PROTOTYPE.setDecimalFormatSymbols(symbols);
}
private Default2321CFormat() {
}
@Override
NumberFormat getLegacyNumberFormat(Environment env) {
// Note: DecimalFormat-s aren't thread-safe, so you must clone the static field value.
return (NumberFormat) LEGACY_NUMBER_FORMAT_PROTOTYPE.clone();
}
@Override
public String getName() {
return NAME;
}
}