FastDateFormat.java

  1. /*
  2.  * Licensed to the Apache Software Foundation (ASF) under one or more
  3.  * contributor license agreements.  See the NOTICE file distributed with
  4.  * this work for additional information regarding copyright ownership.
  5.  * The ASF licenses this file to You under the Apache License, Version 2.0
  6.  * (the "License"); you may not use this file except in compliance with
  7.  * the License.  You may obtain a copy of the License at
  8.  *
  9.  *      http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */
  17. package org.apache.commons.lang3.time;

  18. import java.text.DateFormat;
  19. import java.text.FieldPosition;
  20. import java.text.Format;
  21. import java.text.ParseException;
  22. import java.text.ParsePosition;
  23. import java.text.SimpleDateFormat;
  24. import java.util.Calendar;
  25. import java.util.Date;
  26. import java.util.GregorianCalendar;
  27. import java.util.Locale;
  28. import java.util.TimeZone;

  29. /**
  30.  * FastDateFormat is a fast and thread-safe version of
  31.  * {@link java.text.SimpleDateFormat}.
  32.  *
  33.  * <p>To obtain an instance of FastDateFormat, use one of the static factory methods:
  34.  * {@link #getInstance(String, TimeZone, Locale)}, {@link #getDateInstance(int, TimeZone, Locale)},
  35.  * {@link #getTimeInstance(int, TimeZone, Locale)}, or {@link #getDateTimeInstance(int, int, TimeZone, Locale)}
  36.  * </p>
  37.  *
  38.  * <p>Since FastDateFormat is thread safe, you can use a static member instance:</p>
  39.  * {@code
  40.  *   private static final FastDateFormat DATE_FORMATTER = FastDateFormat.getDateTimeInstance(FastDateFormat.LONG, FastDateFormat.SHORT);
  41.  * }
  42.  *
  43.  * <p>This class can be used as a direct replacement to
  44.  * {@link SimpleDateFormat} in most formatting and parsing situations.
  45.  * This class is especially useful in multi-threaded server environments.
  46.  * {@link SimpleDateFormat} is not thread-safe in any JDK version,
  47.  * nor will it be as Sun have closed the bug/RFE.
  48.  * </p>
  49.  *
  50.  * <p>All patterns are compatible with
  51.  * SimpleDateFormat (except time zones and some year patterns - see below).</p>
  52.  *
  53.  * <p>Since 3.2, FastDateFormat supports parsing as well as printing.</p>
  54.  *
  55.  * <p>Java 1.4 introduced a new pattern letter, {@code 'Z'}, to represent
  56.  * time zones in RFC822 format (eg. {@code +0800} or {@code -1100}).
  57.  * This pattern letter can be used here (on all JDK versions).</p>
  58.  *
  59.  * <p>In addition, the pattern {@code 'ZZ'} has been made to represent
  60.  * ISO 8601 extended format time zones (eg. {@code +08:00} or {@code -11:00}).
  61.  * This introduces a minor incompatibility with Java 1.4, but at a gain of
  62.  * useful functionality.</p>
  63.  *
  64.  * <p>Javadoc cites for the year pattern: <i>For formatting, if the number of
  65.  * pattern letters is 2, the year is truncated to 2 digits; otherwise it is
  66.  * interpreted as a number.</i> Starting with Java 1.7 a pattern of 'Y' or
  67.  * 'YYY' will be formatted as '2003', while it was '03' in former Java
  68.  * versions. FastDateFormat implements the behavior of Java 7.</p>
  69.  *
  70.  * @since 2.0
  71.  */
  72. public class FastDateFormat extends Format implements DateParser, DatePrinter {

  73.     /**
  74.      * Required for serialization support.
  75.      *
  76.      * @see java.io.Serializable
  77.      */
  78.     private static final long serialVersionUID = 2L;

  79.     /**
  80.      * FULL locale dependent date or time style.
  81.      */

  82.     public static final int FULL = DateFormat.FULL;

  83.     /**
  84.      * LONG locale dependent date or time style.
  85.      */
  86.     public static final int LONG = DateFormat.LONG;

  87.     /**
  88.      * MEDIUM locale dependent date or time style.
  89.      */
  90.     public static final int MEDIUM = DateFormat.MEDIUM;

  91.     /**
  92.      * SHORT locale dependent date or time style.
  93.      */
  94.     public static final int SHORT = DateFormat.SHORT;

  95.     private static final AbstractFormatCache<FastDateFormat> cache = new AbstractFormatCache<FastDateFormat>() {
  96.         @Override
  97.         protected FastDateFormat createInstance(final String pattern, final TimeZone timeZone, final Locale locale) {
  98.             return new FastDateFormat(pattern, timeZone, locale);
  99.         }
  100.     };

  101.     /**
  102.      * Gets a date formatter instance using the specified style in the
  103.      * default time zone and locale.
  104.      *
  105.      * @param style  date style: FULL, LONG, MEDIUM, or SHORT
  106.      * @return a localized standard date formatter
  107.      * @throws IllegalArgumentException if the Locale has no date
  108.      *  pattern defined
  109.      * @since 2.1
  110.      */
  111.     public static FastDateFormat getDateInstance(final int style) {
  112.         return cache.getDateInstance(style, null, null);
  113.     }

  114.     /**
  115.      * Gets a date formatter instance using the specified style and
  116.      * locale in the default time zone.
  117.      *
  118.      * @param style  date style: FULL, LONG, MEDIUM, or SHORT
  119.      * @param locale  optional locale, overrides system locale
  120.      * @return a localized standard date formatter
  121.      * @throws IllegalArgumentException if the Locale has no date
  122.      *  pattern defined
  123.      * @since 2.1
  124.      */
  125.     public static FastDateFormat getDateInstance(final int style, final Locale locale) {
  126.         return cache.getDateInstance(style, null, locale);
  127.     }

  128.     /**
  129.      * Gets a date formatter instance using the specified style and
  130.      * time zone in the default locale.
  131.      *
  132.      * @param style  date style: FULL, LONG, MEDIUM, or SHORT
  133.      * @param timeZone  optional time zone, overrides time zone of
  134.      *  formatted date
  135.      * @return a localized standard date formatter
  136.      * @throws IllegalArgumentException if the Locale has no date
  137.      *  pattern defined
  138.      * @since 2.1
  139.      */
  140.     public static FastDateFormat getDateInstance(final int style, final TimeZone timeZone) {
  141.         return cache.getDateInstance(style, timeZone, null);
  142.     }

  143.     /**
  144.      * Gets a date formatter instance using the specified style, time
  145.      * zone and locale.
  146.      *
  147.      * @param style  date style: FULL, LONG, MEDIUM, or SHORT
  148.      * @param timeZone  optional time zone, overrides time zone of
  149.      *  formatted date
  150.      * @param locale  optional locale, overrides system locale
  151.      * @return a localized standard date formatter
  152.      * @throws IllegalArgumentException if the Locale has no date
  153.      *  pattern defined
  154.      */
  155.     public static FastDateFormat getDateInstance(final int style, final TimeZone timeZone, final Locale locale) {
  156.         return cache.getDateInstance(style, timeZone, locale);
  157.     }

  158.     /**
  159.      * Gets a date/time formatter instance using the specified style
  160.      * in the default time zone and locale.
  161.      *
  162.      * @param dateStyle  date style: FULL, LONG, MEDIUM, or SHORT
  163.      * @param timeStyle  time style: FULL, LONG, MEDIUM, or SHORT
  164.      * @return a localized standard date/time formatter
  165.      * @throws IllegalArgumentException if the Locale has no date/time
  166.      *  pattern defined
  167.      * @since 2.1
  168.      */
  169.     public static FastDateFormat getDateTimeInstance(final int dateStyle, final int timeStyle) {
  170.         return cache.getDateTimeInstance(dateStyle, timeStyle, null, null);
  171.     }

  172.     /**
  173.      * Gets a date/time formatter instance using the specified style and
  174.      * locale in the default time zone.
  175.      *
  176.      * @param dateStyle  date style: FULL, LONG, MEDIUM, or SHORT
  177.      * @param timeStyle  time style: FULL, LONG, MEDIUM, or SHORT
  178.      * @param locale  optional locale, overrides system locale
  179.      * @return a localized standard date/time formatter
  180.      * @throws IllegalArgumentException if the Locale has no date/time
  181.      *  pattern defined
  182.      * @since 2.1
  183.      */
  184.     public static FastDateFormat getDateTimeInstance(final int dateStyle, final int timeStyle, final Locale locale) {
  185.         return cache.getDateTimeInstance(dateStyle, timeStyle, null, locale);
  186.     }

  187.     /**
  188.      * Gets a date/time formatter instance using the specified style and
  189.      * time zone in the default locale.
  190.      *
  191.      * @param dateStyle  date style: FULL, LONG, MEDIUM, or SHORT
  192.      * @param timeStyle  time style: FULL, LONG, MEDIUM, or SHORT
  193.      * @param timeZone  optional time zone, overrides time zone of
  194.      *  formatted date
  195.      * @return a localized standard date/time formatter
  196.      * @throws IllegalArgumentException if the Locale has no date/time
  197.      *  pattern defined
  198.      * @since 2.1
  199.      */
  200.     public static FastDateFormat getDateTimeInstance(final int dateStyle, final int timeStyle, final TimeZone timeZone) {
  201.         return getDateTimeInstance(dateStyle, timeStyle, timeZone, null);
  202.     }

  203.     /**
  204.      * Gets a date/time formatter instance using the specified style,
  205.      * time zone and locale.
  206.      *
  207.      * @param dateStyle  date style: FULL, LONG, MEDIUM, or SHORT
  208.      * @param timeStyle  time style: FULL, LONG, MEDIUM, or SHORT
  209.      * @param timeZone  optional time zone, overrides time zone of
  210.      *  formatted date
  211.      * @param locale  optional locale, overrides system locale
  212.      * @return a localized standard date/time formatter
  213.      * @throws IllegalArgumentException if the Locale has no date/time
  214.      *  pattern defined
  215.      */
  216.     public static FastDateFormat getDateTimeInstance(
  217.             final int dateStyle, final int timeStyle, final TimeZone timeZone, final Locale locale) {
  218.         return cache.getDateTimeInstance(dateStyle, timeStyle, timeZone, locale);
  219.     }

  220.     /**
  221.      * Gets a formatter instance using the default pattern in the
  222.      * default locale.
  223.      *
  224.      * @return a date/time formatter
  225.      */
  226.     public static FastDateFormat getInstance() {
  227.         return cache.getInstance();
  228.     }

  229.     /**
  230.      * Gets a formatter instance using the specified pattern in the
  231.      * default locale.
  232.      *
  233.      * @param pattern  {@link java.text.SimpleDateFormat} compatible
  234.      *  pattern
  235.      * @return a pattern based date/time formatter
  236.      * @throws IllegalArgumentException if pattern is invalid
  237.      */
  238.     public static FastDateFormat getInstance(final String pattern) {
  239.         return cache.getInstance(pattern, null, null);
  240.     }

  241.     /**
  242.      * Gets a formatter instance using the specified pattern and
  243.      * locale.
  244.      *
  245.      * @param pattern  {@link java.text.SimpleDateFormat} compatible
  246.      *  pattern
  247.      * @param locale  optional locale, overrides system locale
  248.      * @return a pattern based date/time formatter
  249.      * @throws IllegalArgumentException if pattern is invalid
  250.      */
  251.     public static FastDateFormat getInstance(final String pattern, final Locale locale) {
  252.         return cache.getInstance(pattern, null, locale);
  253.     }

  254.     /**
  255.      * Gets a formatter instance using the specified pattern and
  256.      * time zone.
  257.      *
  258.      * @param pattern  {@link java.text.SimpleDateFormat} compatible
  259.      *  pattern
  260.      * @param timeZone  optional time zone, overrides time zone of
  261.      *  formatted date
  262.      * @return a pattern based date/time formatter
  263.      * @throws IllegalArgumentException if pattern is invalid
  264.      */
  265.     public static FastDateFormat getInstance(final String pattern, final TimeZone timeZone) {
  266.         return cache.getInstance(pattern, timeZone, null);
  267.     }

  268.     /**
  269.      * Gets a formatter instance using the specified pattern, time zone
  270.      * and locale.
  271.      *
  272.      * @param pattern  {@link java.text.SimpleDateFormat} compatible
  273.      *  pattern
  274.      * @param timeZone  optional time zone, overrides time zone of
  275.      *  formatted date
  276.      * @param locale  optional locale, overrides system locale
  277.      * @return a pattern based date/time formatter
  278.      * @throws IllegalArgumentException if pattern is invalid
  279.      *  or {@code null}
  280.      */
  281.     public static FastDateFormat getInstance(final String pattern, final TimeZone timeZone, final Locale locale) {
  282.         return cache.getInstance(pattern, timeZone, locale);
  283.     }

  284.     /**
  285.      * Gets a time formatter instance using the specified style in the
  286.      * default time zone and locale.
  287.      *
  288.      * @param style  time style: FULL, LONG, MEDIUM, or SHORT
  289.      * @return a localized standard time formatter
  290.      * @throws IllegalArgumentException if the Locale has no time
  291.      *  pattern defined
  292.      * @since 2.1
  293.      */
  294.     public static FastDateFormat getTimeInstance(final int style) {
  295.         return cache.getTimeInstance(style, null, null);
  296.     }

  297.     /**
  298.      * Gets a time formatter instance using the specified style and
  299.      * locale in the default time zone.
  300.      *
  301.      * @param style  time style: FULL, LONG, MEDIUM, or SHORT
  302.      * @param locale  optional locale, overrides system locale
  303.      * @return a localized standard time formatter
  304.      * @throws IllegalArgumentException if the Locale has no time
  305.      *  pattern defined
  306.      * @since 2.1
  307.      */
  308.     public static FastDateFormat getTimeInstance(final int style, final Locale locale) {
  309.         return cache.getTimeInstance(style, null, locale);
  310.     }

  311.     /**
  312.      * Gets a time formatter instance using the specified style and
  313.      * time zone in the default locale.
  314.      *
  315.      * @param style  time style: FULL, LONG, MEDIUM, or SHORT
  316.      * @param timeZone  optional time zone, overrides time zone of
  317.      *  formatted time
  318.      * @return a localized standard time formatter
  319.      * @throws IllegalArgumentException if the Locale has no time
  320.      *  pattern defined
  321.      * @since 2.1
  322.      */
  323.     public static FastDateFormat getTimeInstance(final int style, final TimeZone timeZone) {
  324.         return cache.getTimeInstance(style, timeZone, null);
  325.     }

  326.     /**
  327.      * Gets a time formatter instance using the specified style, time
  328.      * zone and locale.
  329.      *
  330.      * @param style  time style: FULL, LONG, MEDIUM, or SHORT
  331.      * @param timeZone  optional time zone, overrides time zone of
  332.      *  formatted time
  333.      * @param locale  optional locale, overrides system locale
  334.      * @return a localized standard time formatter
  335.      * @throws IllegalArgumentException if the Locale has no time
  336.      *  pattern defined
  337.      */
  338.     public static FastDateFormat getTimeInstance(final int style, final TimeZone timeZone, final Locale locale) {
  339.         return cache.getTimeInstance(style, timeZone, locale);
  340.     }

  341.     /** Our fast printer. */
  342.     private final FastDatePrinter printer;
  343.     /** Our fast parser. */
  344.     private final FastDateParser parser;

  345.     // Constructor
  346.     /**
  347.      * Constructs a new FastDateFormat.
  348.      *
  349.      * @param pattern  {@link java.text.SimpleDateFormat} compatible pattern
  350.      * @param timeZone  non-null time zone to use
  351.      * @param locale  non-null locale to use
  352.      * @throws NullPointerException if pattern, timeZone, or locale is null.
  353.      */
  354.     protected FastDateFormat(final String pattern, final TimeZone timeZone, final Locale locale) {
  355.         this(pattern, timeZone, locale, null);
  356.     }

  357.     // Constructor
  358.     /**
  359.      * Constructs a new FastDateFormat.
  360.      *
  361.      * @param pattern  {@link java.text.SimpleDateFormat} compatible pattern
  362.      * @param timeZone  non-null time zone to use
  363.      * @param locale  non-null locale to use
  364.      * @param centuryStart The start of the 100-year period to use as the "default century" for 2 digit year parsing.  If centuryStart is null, defaults to now - 80 years
  365.      * @throws NullPointerException if pattern, timeZone, or locale is null.
  366.      */
  367.     protected FastDateFormat(final String pattern, final TimeZone timeZone, final Locale locale, final Date centuryStart) {
  368.         printer = new FastDatePrinter(pattern, timeZone, locale);
  369.         parser = new FastDateParser(pattern, timeZone, locale, centuryStart);
  370.     }

  371.     /**
  372.      * Performs the formatting by applying the rules to the
  373.      * specified calendar.
  374.      *
  375.      * @param calendar the calendar to format
  376.      * @param buf  the buffer to format into
  377.      * @return the specified string buffer
  378.      * @deprecated Use {@link #format(Calendar, Appendable)}
  379.      */
  380.     @Deprecated
  381.     protected StringBuffer applyRules(final Calendar calendar, final StringBuffer buf) {
  382.         return printer.applyRules(calendar, buf);
  383.     }

  384.     // Basics
  385.     /**
  386.      * Compares two objects for equality.
  387.      *
  388.      * @param obj  the object to compare to
  389.      * @return {@code true} if equal
  390.      */
  391.     @Override
  392.     public boolean equals(final Object obj) {
  393.         if (!(obj instanceof FastDateFormat)) {
  394.             return false;
  395.         }
  396.         final FastDateFormat other = (FastDateFormat) obj;
  397.         // no need to check parser, as it has same invariants as printer
  398.         return printer.equals(other.printer);
  399.     }

  400.     /**
  401.      * Formats a {@link Calendar} object.
  402.      *
  403.      * @param calendar  the calendar to format
  404.      * @return the formatted string
  405.      */
  406.     @Override
  407.     public String format(final Calendar calendar) {
  408.         return printer.format(calendar);
  409.     }

  410.     /**
  411.      * Formats a {@link Calendar} object into the
  412.      * supplied {@link StringBuffer}.
  413.      *
  414.      * @param calendar  the calendar to format
  415.      * @param buf  the buffer to format into
  416.      * @return the specified string buffer
  417.      * @since 3.5
  418.     */
  419.     @Override
  420.     public <B extends Appendable> B format(final Calendar calendar, final B buf) {
  421.         return printer.format(calendar, buf);
  422.     }

  423.     /**
  424.      * Formats a {@link Calendar} object into the
  425.      * supplied {@link StringBuffer}.
  426.      *
  427.      * @param calendar  the calendar to format
  428.      * @param buf  the buffer to format into
  429.      * @return the specified string buffer
  430.      * @deprecated Use {{@link #format(Calendar, Appendable)}.
  431.      */
  432.     @Deprecated
  433.     @Override
  434.     public StringBuffer format(final Calendar calendar, final StringBuffer buf) {
  435.         return printer.format(calendar, buf);
  436.     }

  437.     /**
  438.      * Formats a {@link Date} object using a {@link GregorianCalendar}.
  439.      *
  440.      * @param date  the date to format
  441.      * @return the formatted string
  442.      */
  443.     @Override
  444.     public String format(final Date date) {
  445.         return printer.format(date);
  446.     }

  447.     /**
  448.      * Formats a {@link Date} object into the
  449.      * supplied {@link StringBuffer} using a {@link GregorianCalendar}.
  450.      *
  451.      * @param date  the date to format
  452.      * @param buf  the buffer to format into
  453.      * @return the specified string buffer
  454.      * @since 3.5
  455.      */
  456.     @Override
  457.     public <B extends Appendable> B format(final Date date, final B buf) {
  458.         return printer.format(date, buf);
  459.     }

  460.     /**
  461.      * Formats a {@link Date} object into the
  462.      * supplied {@link StringBuffer} using a {@link GregorianCalendar}.
  463.      *
  464.      * @param date  the date to format
  465.      * @param buf  the buffer to format into
  466.      * @return the specified string buffer
  467.      * @deprecated Use {{@link #format(Date, Appendable)}.
  468.      */
  469.     @Deprecated
  470.     @Override
  471.     public StringBuffer format(final Date date, final StringBuffer buf) {
  472.         return printer.format(date, buf);
  473.     }

  474.     /**
  475.      * Formats a millisecond {@code long} value.
  476.      *
  477.      * @param millis  the millisecond value to format
  478.      * @return the formatted string
  479.      * @since 2.1
  480.      */
  481.     @Override
  482.     public String format(final long millis) {
  483.         return printer.format(millis);
  484.     }

  485.     /**
  486.      * Formats a millisecond {@code long} value into the
  487.      * supplied {@link StringBuffer}.
  488.      *
  489.      * @param millis  the millisecond value to format
  490.      * @param buf  the buffer to format into
  491.      * @return the specified string buffer
  492.      * @since 3.5
  493.      */
  494.     @Override
  495.     public <B extends Appendable> B format(final long millis, final B buf) {
  496.         return printer.format(millis, buf);
  497.     }

  498.     // Parsing

  499.     /**
  500.      * Formats a millisecond {@code long} value into the
  501.      * supplied {@link StringBuffer}.
  502.      *
  503.      * @param millis  the millisecond value to format
  504.      * @param buf  the buffer to format into
  505.      * @return the specified string buffer
  506.      * @since 2.1
  507.      * @deprecated Use {{@link #format(long, Appendable)}.
  508.      */
  509.     @Deprecated
  510.     @Override
  511.     public StringBuffer format(final long millis, final StringBuffer buf) {
  512.         return printer.format(millis, buf);
  513.     }

  514.     // Format methods
  515.     /**
  516.      * Formats a {@link Date}, {@link Calendar} or
  517.      * {@link Long} (milliseconds) object.
  518.      * This method is an implementation of {@link Format#format(Object, StringBuffer, FieldPosition)}
  519.      *
  520.      * @param obj  the object to format
  521.      * @param toAppendTo  the buffer to append to
  522.      * @param pos  the position - ignored
  523.      * @return the buffer passed in
  524.      */
  525.     @Override
  526.     public StringBuffer format(final Object obj, final StringBuffer toAppendTo, final FieldPosition pos) {
  527.         return toAppendTo.append(printer.format(obj));
  528.     }

  529.     /**
  530.      * Gets the locale used by this formatter.
  531.      *
  532.      * @return the locale
  533.      */
  534.     @Override
  535.     public Locale getLocale() {
  536.         return printer.getLocale();
  537.     }

  538.     /**
  539.      * Gets an estimate for the maximum string length that the
  540.      * formatter will produce.
  541.      *
  542.      * <p>The actual formatted length will almost always be less than or
  543.      * equal to this amount.</p>
  544.      *
  545.      * @return the maximum formatted length
  546.      */
  547.     public int getMaxLengthEstimate() {
  548.         return printer.getMaxLengthEstimate();
  549.     }

  550.     // Accessors
  551.     /**
  552.      * Gets the pattern used by this formatter.
  553.      *
  554.      * @return the pattern, {@link java.text.SimpleDateFormat} compatible
  555.      */
  556.     @Override
  557.     public String getPattern() {
  558.         return printer.getPattern();
  559.     }

  560.     /**
  561.      * Gets the time zone used by this formatter.
  562.      *
  563.      * <p>This zone is always used for {@link Date} formatting.</p>
  564.      *
  565.      * @return the time zone
  566.      */
  567.     @Override
  568.     public TimeZone getTimeZone() {
  569.         return printer.getTimeZone();
  570.     }

  571.     /**
  572.      * Returns a hash code compatible with equals.
  573.      *
  574.      * @return a hash code compatible with equals
  575.      */
  576.     @Override
  577.     public int hashCode() {
  578.         return printer.hashCode();
  579.     }

  580.     /* (non-Javadoc)
  581.      * @see DateParser#parse(String)
  582.      */
  583.     @Override
  584.     public Date parse(final String source) throws ParseException {
  585.         return parser.parse(source);
  586.     }

  587.     /* (non-Javadoc)
  588.      * @see DateParser#parse(String, java.text.ParsePosition)
  589.      */
  590.     @Override
  591.     public Date parse(final String source, final ParsePosition pos) {
  592.         return parser.parse(source, pos);
  593.     }

  594.     /*
  595.      * (non-Javadoc)
  596.      * @see org.apache.commons.lang3.time.DateParser#parse(String, java.text.ParsePosition, java.util.Calendar)
  597.      */
  598.     @Override
  599.     public boolean parse(final String source, final ParsePosition pos, final Calendar calendar) {
  600.         return parser.parse(source, pos, calendar);
  601.     }

  602.     /* (non-Javadoc)
  603.      * @see java.text.Format#parseObject(String, java.text.ParsePosition)
  604.      */
  605.     @Override
  606.     public Object parseObject(final String source, final ParsePosition pos) {
  607.         return parser.parseObject(source, pos);
  608.     }

  609.     /**
  610.      * Gets a debugging string version of this formatter.
  611.      *
  612.      * @return a debugging string
  613.      */
  614.     @Override
  615.     public String toString() {
  616.         return "FastDateFormat[" + printer.getPattern() + "," + printer.getLocale() + "," + printer.getTimeZone().getID() + "]";
  617.     }
  618. }