jdk/src/share/classes/java/text/DateFormatSymbols.java
author naoto
Tue, 21 Aug 2012 11:00:30 -0700
changeset 13583 dc0017b1a452
parent 12549 db2c42dabfa4
child 14172 fad44417edf8
permissions -rw-r--r--
6336885: RFE: Locale Data Deployment Enhancements 4609153: Provide locale data for Indic locales 5104387: Support for gl_ES locale (galician language) 6337471: desktop/system locale preferences support 7056139: (cal) SPI support for locale-dependent Calendar parameters 7058206: Provide CalendarData SPI for week params and display field value names 7073852: Support multiple scripts for digits and decimal symbols per locale 7079560: [Fmt-Da] Context dependent month names support in SimpleDateFormat 7171324: getAvailableLocales() of locale sensitive services should return the actual availability of locales 7151414: (cal) Support calendar type identification 7168528: LocaleServiceProvider needs to be aware of Locale extensions 7171372: (cal) locale's default Calendar should be created if unknown calendar is specified Summary: JEP 127: Improve Locale Data Packaging and Adopt Unicode CLDR Data (part 1 w/o packaging changes. by Naoto Sato and Masayoshi Okutsu) Reviewed-by: erikj, sherman, peytoia
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
     2
 * Copyright (c) 1996, 2012, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 * (C) Copyright Taligent, Inc. 1996 - All Rights Reserved
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 * (C) Copyright IBM Corp. 1996 - All Rights Reserved
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 *   The original version of this source code and documentation is copyrighted
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 * and owned by Taligent, Inc., a wholly-owned subsidiary of IBM. These
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 * materials are provided under terms of a License Agreement between Taligent
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * and Sun. This technology is protected by multiple US and International
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * patents. This notice and attribution to Taligent may not be removed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 *   Taligent is a registered trademark of Taligent, Inc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
package java.text;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
import java.io.IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
import java.io.ObjectOutputStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
import java.io.Serializable;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
import java.lang.ref.SoftReference;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
import java.text.spi.DateFormatSymbolsProvider;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
import java.util.Arrays;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
import java.util.Locale;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
import java.util.ResourceBundle;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
import java.util.TimeZone;
7003
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
    50
import java.util.concurrent.ConcurrentHashMap;
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
    51
import java.util.concurrent.ConcurrentMap;
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
    52
import sun.util.locale.provider.LocaleProviderAdapter;
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
    53
import sun.util.locale.provider.LocaleServiceProviderPool;
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
    54
import sun.util.locale.provider.TimeZoneNameUtility;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * <code>DateFormatSymbols</code> is a public class for encapsulating
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * localizable date-time formatting data, such as the names of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * months, the names of the days of the week, and the time zone data.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * <code>DateFormat</code> and <code>SimpleDateFormat</code> both use
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 * <code>DateFormatSymbols</code> to encapsulate this information.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * Typically you shouldn't use <code>DateFormatSymbols</code> directly.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * Rather, you are encouraged to create a date-time formatter with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * <code>DateFormat</code> class's factory methods: <code>getTimeInstance</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 * <code>getDateInstance</code>, or <code>getDateTimeInstance</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 * These methods automatically create a <code>DateFormatSymbols</code> for
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 * the formatter so that you don't have to. After the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 * formatter is created, you may modify its format pattern using the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 * <code>setPattern</code> method. For more information about
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 * creating formatters using <code>DateFormat</code>'s factory methods,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 * see {@link DateFormat}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 * If you decide to create a date-time formatter with a specific
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 * format pattern for a specific locale, you can do so with:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 * <blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 * new SimpleDateFormat(aPattern, DateFormatSymbols.getInstance(aLocale)).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 * </blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 * <code>DateFormatSymbols</code> objects are cloneable. When you obtain
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
 * a <code>DateFormatSymbols</code> object, feel free to modify the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 * date-time formatting data. For instance, you can replace the localized
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 * date-time format pattern characters with the ones that you feel easy
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
 * to remember. Or you can change the representative cities
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
 * to your favorite ones.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
 * New <code>DateFormatSymbols</code> subclasses may be added to support
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
 * <code>SimpleDateFormat</code> for date-time formatting for additional locales.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
 * @see          DateFormat
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
 * @see          SimpleDateFormat
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
 * @see          java.util.SimpleTimeZone
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
 * @author       Chen-Lieh Huang
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
public class DateFormatSymbols implements Serializable, Cloneable {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
     * Construct a DateFormatSymbols object by loading format data from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     * resources for the default locale. This constructor can only
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     * construct instances for the locales supported by the Java
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     * runtime environment, not for those supported by installed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     * {@link java.text.spi.DateFormatSymbolsProvider DateFormatSymbolsProvider}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     * implementations. For full locale coverage, use the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     * {@link #getInstance(Locale) getInstance} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     * @see #getInstance()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     * @exception  java.util.MissingResourceException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     *             if the resources for the default locale cannot be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     *             found or cannot be loaded.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    public DateFormatSymbols()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
    {
6489
9e7015635425 4700857: RFE: separating user locale and user interface locale
naoto
parents: 5506
diff changeset
   119
        initializeData(Locale.getDefault(Locale.Category.FORMAT));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     * Construct a DateFormatSymbols object by loading format data from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     * resources for the given locale. This constructor can only
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     * construct instances for the locales supported by the Java
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     * runtime environment, not for those supported by installed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     * {@link java.text.spi.DateFormatSymbolsProvider DateFormatSymbolsProvider}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     * implementations. For full locale coverage, use the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     * {@link #getInstance(Locale) getInstance} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     * @see #getInstance(Locale)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     * @exception  java.util.MissingResourceException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     *             if the resources for the specified locale cannot be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     *             found or cannot be loaded.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
    public DateFormatSymbols(Locale locale)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
        initializeData(locale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     * Era strings. For example: "AD" and "BC".  An array of 2 strings,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     * indexed by <code>Calendar.BC</code> and <code>Calendar.AD</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
    String eras[] = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     * Month strings. For example: "January", "February", etc.  An array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     * of 13 strings (some calendars have 13 months), indexed by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     * <code>Calendar.JANUARY</code>, <code>Calendar.FEBRUARY</code>, etc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    String months[] = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     * Short month strings. For example: "Jan", "Feb", etc.  An array of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     * 13 strings (some calendars have 13 months), indexed by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     * <code>Calendar.JANUARY</code>, <code>Calendar.FEBRUARY</code>, etc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
    String shortMonths[] = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     * Weekday strings. For example: "Sunday", "Monday", etc.  An array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     * of 8 strings, indexed by <code>Calendar.SUNDAY</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     * <code>Calendar.MONDAY</code>, etc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     * The element <code>weekdays[0]</code> is ignored.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
    String weekdays[] = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     * Short weekday strings. For example: "Sun", "Mon", etc.  An array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     * of 8 strings, indexed by <code>Calendar.SUNDAY</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     * <code>Calendar.MONDAY</code>, etc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     * The element <code>shortWeekdays[0]</code> is ignored.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
    String shortWeekdays[] = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
     * AM and PM strings. For example: "AM" and "PM".  An array of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     * 2 strings, indexed by <code>Calendar.AM</code> and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     * <code>Calendar.PM</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
    String ampms[] = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
     * Localized names of time zones in this locale.  This is a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
     * two-dimensional array of strings of size <em>n</em> by <em>m</em>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     * where <em>m</em> is at least 5.  Each of the <em>n</em> rows is an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
     * entry containing the localized names for a single <code>TimeZone</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
     * Each such row contains (with <code>i</code> ranging from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
     * 0..<em>n</em>-1):
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     * <li><code>zoneStrings[i][0]</code> - time zone ID</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     * <li><code>zoneStrings[i][1]</code> - long name of zone in standard
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     * time</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     * <li><code>zoneStrings[i][2]</code> - short name of zone in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
     * standard time</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
     * <li><code>zoneStrings[i][3]</code> - long name of zone in daylight
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
     * saving time</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
     * <li><code>zoneStrings[i][4]</code> - short name of zone in daylight
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
     * saving time</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     * The zone ID is <em>not</em> localized; it's one of the valid IDs of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     * the {@link java.util.TimeZone TimeZone} class that are not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
     * <a href="../java/util/TimeZone.html#CustomID">custom IDs</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     * All other entries are localized names.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     * @see java.util.TimeZone
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
    String zoneStrings[][] = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
     * Indicates that zoneStrings is set externally with setZoneStrings() method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
    transient boolean isZoneStringsSet = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
     * Unlocalized date-time pattern characters. For example: 'y', 'd', etc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     * All locales use the same these unlocalized pattern characters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     */
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   227
    static final String  patternChars = "GyMdkHmsSEDFwWahKzZYuXL";
6491
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
   228
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
   229
    static final int PATTERN_ERA                  =  0; // G
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
   230
    static final int PATTERN_YEAR                 =  1; // y
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
   231
    static final int PATTERN_MONTH                =  2; // M
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
   232
    static final int PATTERN_DAY_OF_MONTH         =  3; // d
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
   233
    static final int PATTERN_HOUR_OF_DAY1         =  4; // k
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
   234
    static final int PATTERN_HOUR_OF_DAY0         =  5; // H
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
   235
    static final int PATTERN_MINUTE               =  6; // m
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
   236
    static final int PATTERN_SECOND               =  7; // s
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
   237
    static final int PATTERN_MILLISECOND          =  8; // S
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
   238
    static final int PATTERN_DAY_OF_WEEK          =  9; // E
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
   239
    static final int PATTERN_DAY_OF_YEAR          = 10; // D
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
   240
    static final int PATTERN_DAY_OF_WEEK_IN_MONTH = 11; // F
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
   241
    static final int PATTERN_WEEK_OF_YEAR         = 12; // w
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
   242
    static final int PATTERN_WEEK_OF_MONTH        = 13; // W
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
   243
    static final int PATTERN_AM_PM                = 14; // a
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
   244
    static final int PATTERN_HOUR1                = 15; // h
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
   245
    static final int PATTERN_HOUR0                = 16; // K
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
   246
    static final int PATTERN_ZONE_NAME            = 17; // z
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
   247
    static final int PATTERN_ZONE_VALUE           = 18; // Z
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
   248
    static final int PATTERN_WEEK_YEAR            = 19; // Y
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
   249
    static final int PATTERN_ISO_DAY_OF_WEEK      = 20; // u
6497
22752a2b3413 4919632: RFE: SimpleDateFormat should fully support ISO8601 standard for timezone
okutsu
parents: 6491
diff changeset
   250
    static final int PATTERN_ISO_ZONE             = 21; // X
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   251
    static final int PATTERN_MONTH_STANDALONE     = 22; // L
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
     * Localized date-time pattern characters. For example, a locale may
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
     * wish to use 'u' rather than 'y' to represent years in its date format
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
     * pattern strings.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
     * This string must be exactly 18 characters long, with the index of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
     * the characters described by <code>DateFormat.ERA_FIELD</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
     * <code>DateFormat.YEAR_FIELD</code>, etc.  Thus, if the string were
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
     * "Xz...", then localized patterns would use 'X' for era and 'z' for year.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
    String  localPatternChars = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
     * The locale which is used for initializing this DateFormatSymbols object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
    Locale locale = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
    /* use serialVersionUID from JDK 1.1.4 for interoperability */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
    static final long serialVersionUID = -5987973545549424702L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
     * Returns an array of all locales for which the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
     * <code>getInstance</code> methods of this class can return
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
     * localized instances.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
     * The returned array represents the union of locales supported by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
     * Java runtime and by installed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
     * {@link java.text.spi.DateFormatSymbolsProvider DateFormatSymbolsProvider}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
     * implementations.  It must contain at least a <code>Locale</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
     * instance equal to {@link java.util.Locale#US Locale.US}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
     * @return An array of locales for which localized
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
     *         <code>DateFormatSymbols</code> instances are available.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
    public static Locale[] getAvailableLocales() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
        LocaleServiceProviderPool pool=
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
            LocaleServiceProviderPool.getPool(DateFormatSymbolsProvider.class);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
        return pool.getAvailableLocales();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
     * Gets the <code>DateFormatSymbols</code> instance for the default
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
     * locale.  This method provides access to <code>DateFormatSymbols</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
     * instances for locales supported by the Java runtime itself as well
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
     * as for those supported by installed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
     * {@link java.text.spi.DateFormatSymbolsProvider DateFormatSymbolsProvider}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
     * implementations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
     * @return a <code>DateFormatSymbols</code> instance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
    public static final DateFormatSymbols getInstance() {
6489
9e7015635425 4700857: RFE: separating user locale and user interface locale
naoto
parents: 5506
diff changeset
   307
        return getInstance(Locale.getDefault(Locale.Category.FORMAT));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
     * Gets the <code>DateFormatSymbols</code> instance for the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
     * locale.  This method provides access to <code>DateFormatSymbols</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
     * instances for locales supported by the Java runtime itself as well
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
     * as for those supported by installed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
     * {@link java.text.spi.DateFormatSymbolsProvider DateFormatSymbolsProvider}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
     * implementations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
     * @param locale the given locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
     * @return a <code>DateFormatSymbols</code> instance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
     * @exception NullPointerException if <code>locale</code> is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
    public static final DateFormatSymbols getInstance(Locale locale) {
7003
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   323
        DateFormatSymbols dfs = getProviderInstance(locale);
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   324
        if (dfs != null) {
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   325
            return dfs;
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   326
        }
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   327
        throw new RuntimeException("DateFormatSymbols instance creation failed.");
7003
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   328
    }
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   329
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   330
    /**
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   331
     * Returns a DateFormatSymbols provided by a provider or found in
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   332
     * the cache. Note that this method returns a cached instance,
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   333
     * not its clone. Therefore, the instance should never be given to
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   334
     * an application.
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   335
     */
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   336
    static final DateFormatSymbols getInstanceRef(Locale locale) {
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   337
        DateFormatSymbols dfs = getProviderInstance(locale);
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   338
        if (dfs != null) {
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   339
            return dfs;
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   340
        }
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   341
        throw new RuntimeException("DateFormatSymbols instance creation failed.");
7003
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   342
    }
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   343
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   344
    private static DateFormatSymbols getProviderInstance(Locale locale) {
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   345
        LocaleProviderAdapter adapter = LocaleProviderAdapter.getAdapter(DateFormatSymbolsProvider.class, locale);
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   346
        DateFormatSymbolsProvider provider = adapter.getDateFormatSymbolsProvider();
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   347
        DateFormatSymbols dfsyms = provider.getInstance(locale);
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   348
        if (dfsyms == null) {
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   349
            provider = LocaleProviderAdapter.forJRE().getDateFormatSymbolsProvider();
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   350
            dfsyms = provider.getInstance(locale);
7003
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   351
        }
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   352
        return dfsyms;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
     * Gets era strings. For example: "AD" and "BC".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
     * @return the era strings.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
    public String[] getEras() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
        return Arrays.copyOf(eras, eras.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
     * Sets era strings. For example: "AD" and "BC".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
     * @param newEras the new era strings.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
    public void setEras(String[] newEras) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
        eras = Arrays.copyOf(newEras, newEras.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
     * Gets month strings. For example: "January", "February", etc.
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   373
     *
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   374
     * <p>If the language requires different forms for formatting and
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   375
     * stand-alone usages, this method returns month names in the
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   376
     * formatting form. For example, the preferred month name for
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   377
     * January in the Czech language is <em>ledna</em> in the
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   378
     * formatting form, while it is <em>leden</em> in the stand-alone
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   379
     * form. This method returns {@code "ledna"} in this case. Refer
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   380
     * to the <a href="http://unicode.org/reports/tr35/#Calendar_Elements">
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   381
     * Calendar Elements in the Unicode Locale Data Markup Language
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   382
     * (LDML) specification</a> for more details.
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   383
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
     * @return the month strings.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
    public String[] getMonths() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
        return Arrays.copyOf(months, months.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
     * Sets month strings. For example: "January", "February", etc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
     * @param newMonths the new month strings.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
    public void setMonths(String[] newMonths) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
        months = Arrays.copyOf(newMonths, newMonths.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
     * Gets short month strings. For example: "Jan", "Feb", etc.
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   400
     *
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   401
     * <p>If the language requires different forms for formatting and
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   402
     * stand-alone usages, This method returns short month names in
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   403
     * the formatting form. For example, the preferred abbreviation
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   404
     * for January in the Catalan language is <em>de gen.</em> in the
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   405
     * formatting form, while it is <em>gen.</em> in the stand-alone
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   406
     * form. This method returns {@code "de gen."} in this case. Refer
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   407
     * to the <a href="http://unicode.org/reports/tr35/#Calendar_Elements">
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   408
     * Calendar Elements in the Unicode Locale Data Markup Language
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   409
     * (LDML) specification</a> for more details.
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   410
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
     * @return the short month strings.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
    public String[] getShortMonths() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
        return Arrays.copyOf(shortMonths, shortMonths.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
     * Sets short month strings. For example: "Jan", "Feb", etc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
     * @param newShortMonths the new short month strings.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
    public void setShortMonths(String[] newShortMonths) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
        shortMonths = Arrays.copyOf(newShortMonths, newShortMonths.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
     * Gets weekday strings. For example: "Sunday", "Monday", etc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
     * @return the weekday strings. Use <code>Calendar.SUNDAY</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
     * <code>Calendar.MONDAY</code>, etc. to index the result array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
    public String[] getWeekdays() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
        return Arrays.copyOf(weekdays, weekdays.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
     * Sets weekday strings. For example: "Sunday", "Monday", etc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
     * @param newWeekdays the new weekday strings. The array should
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
     * be indexed by <code>Calendar.SUNDAY</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
     * <code>Calendar.MONDAY</code>, etc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
    public void setWeekdays(String[] newWeekdays) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
        weekdays = Arrays.copyOf(newWeekdays, newWeekdays.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
     * Gets short weekday strings. For example: "Sun", "Mon", etc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
     * @return the short weekday strings. Use <code>Calendar.SUNDAY</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
     * <code>Calendar.MONDAY</code>, etc. to index the result array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
    public String[] getShortWeekdays() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
        return Arrays.copyOf(shortWeekdays, shortWeekdays.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
     * Sets short weekday strings. For example: "Sun", "Mon", etc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
     * @param newShortWeekdays the new short weekday strings. The array should
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
     * be indexed by <code>Calendar.SUNDAY</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
     * <code>Calendar.MONDAY</code>, etc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
    public void setShortWeekdays(String[] newShortWeekdays) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
        shortWeekdays = Arrays.copyOf(newShortWeekdays, newShortWeekdays.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
     * Gets ampm strings. For example: "AM" and "PM".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
     * @return the ampm strings.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
    public String[] getAmPmStrings() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
        return Arrays.copyOf(ampms, ampms.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
     * Sets ampm strings. For example: "AM" and "PM".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
     * @param newAmpms the new ampm strings.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
    public void setAmPmStrings(String[] newAmpms) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
        ampms = Arrays.copyOf(newAmpms, newAmpms.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
     * Gets time zone strings.  Use of this method is discouraged; use
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
     * {@link java.util.TimeZone#getDisplayName() TimeZone.getDisplayName()}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
     * instead.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
     * The value returned is a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
     * two-dimensional array of strings of size <em>n</em> by <em>m</em>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
     * where <em>m</em> is at least 5.  Each of the <em>n</em> rows is an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
     * entry containing the localized names for a single <code>TimeZone</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
     * Each such row contains (with <code>i</code> ranging from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
     * 0..<em>n</em>-1):
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
     * <li><code>zoneStrings[i][0]</code> - time zone ID</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
     * <li><code>zoneStrings[i][1]</code> - long name of zone in standard
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
     * time</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
     * <li><code>zoneStrings[i][2]</code> - short name of zone in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
     * standard time</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
     * <li><code>zoneStrings[i][3]</code> - long name of zone in daylight
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
     * saving time</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
     * <li><code>zoneStrings[i][4]</code> - short name of zone in daylight
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
     * saving time</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
     * The zone ID is <em>not</em> localized; it's one of the valid IDs of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
     * the {@link java.util.TimeZone TimeZone} class that are not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
     * <a href="../util/TimeZone.html#CustomID">custom IDs</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
     * All other entries are localized names.  If a zone does not implement
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
     * daylight saving time, the daylight saving time names should not be used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
     * If {@link #setZoneStrings(String[][]) setZoneStrings} has been called
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
     * on this <code>DateFormatSymbols</code> instance, then the strings
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
     * provided by that call are returned. Otherwise, the returned array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
     * contains names provided by the Java runtime and by installed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
     * {@link java.util.spi.TimeZoneNameProvider TimeZoneNameProvider}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
     * implementations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
     * @return the time zone strings.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
     * @see #setZoneStrings(String[][])
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
    public String[][] getZoneStrings() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
        return getZoneStringsImpl(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
     * Sets time zone strings.  The argument must be a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
     * two-dimensional array of strings of size <em>n</em> by <em>m</em>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
     * where <em>m</em> is at least 5.  Each of the <em>n</em> rows is an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
     * entry containing the localized names for a single <code>TimeZone</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
     * Each such row contains (with <code>i</code> ranging from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
     * 0..<em>n</em>-1):
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
     * <li><code>zoneStrings[i][0]</code> - time zone ID</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
     * <li><code>zoneStrings[i][1]</code> - long name of zone in standard
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
     * time</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
     * <li><code>zoneStrings[i][2]</code> - short name of zone in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
     * standard time</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
     * <li><code>zoneStrings[i][3]</code> - long name of zone in daylight
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
     * saving time</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
     * <li><code>zoneStrings[i][4]</code> - short name of zone in daylight
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
     * saving time</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
     * The zone ID is <em>not</em> localized; it's one of the valid IDs of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
     * the {@link java.util.TimeZone TimeZone} class that are not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
     * <a href="../util/TimeZone.html#CustomID">custom IDs</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
     * All other entries are localized names.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
     * @param newZoneStrings the new time zone strings.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
     * @exception IllegalArgumentException if the length of any row in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
     *    <code>newZoneStrings</code> is less than 5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
     * @exception NullPointerException if <code>newZoneStrings</code> is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
     * @see #getZoneStrings()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
    public void setZoneStrings(String[][] newZoneStrings) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
        String[][] aCopy = new String[newZoneStrings.length][];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
        for (int i = 0; i < newZoneStrings.length; ++i) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
            int len = newZoneStrings[i].length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
            if (len < 5) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
                throw new IllegalArgumentException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
            aCopy[i] = Arrays.copyOf(newZoneStrings[i], len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
        zoneStrings = aCopy;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
        isZoneStringsSet = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
     * Gets localized date-time pattern characters. For example: 'u', 't', etc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
     * @return the localized date-time pattern characters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
    public String getLocalPatternChars() {
6491
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
   568
        return localPatternChars;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
     * Sets localized date-time pattern characters. For example: 'u', 't', etc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
     * @param newLocalPatternChars the new localized date-time
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
     * pattern characters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
    public void setLocalPatternChars(String newLocalPatternChars) {
6491
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
   577
        // Call toString() to throw an NPE in case the argument is null
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
   578
        localPatternChars = newLocalPatternChars.toString();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
     * Overrides Cloneable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
    public Object clone()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
        try
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
            DateFormatSymbols other = (DateFormatSymbols)super.clone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
            copyMembers(this, other);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
            return other;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
        } catch (CloneNotSupportedException e) {
10419
12c063b39232 7084245: Update usages of InternalError to use exception chaining
sherman
parents: 7003
diff changeset
   592
            throw new InternalError(e);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
     * Override hashCode.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
     * Generates a hash code for the DateFormatSymbols object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
    public int hashCode() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
        int hashcode = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
        String[][] zoneStrings = getZoneStringsWrapper();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
        for (int index = 0; index < zoneStrings[0].length; ++index)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
            hashcode ^= zoneStrings[0][index].hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
        return hashcode;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
     * Override equals
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
    public boolean equals(Object obj)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
        if (this == obj) return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
        if (obj == null || getClass() != obj.getClass()) return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
        DateFormatSymbols that = (DateFormatSymbols) obj;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
        return (Arrays.equals(eras, that.eras)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
                && Arrays.equals(months, that.months)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
                && Arrays.equals(shortMonths, that.shortMonths)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
                && Arrays.equals(weekdays, that.weekdays)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
                && Arrays.equals(shortWeekdays, that.shortWeekdays)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
                && Arrays.equals(ampms, that.ampms)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
                && Arrays.deepEquals(getZoneStringsWrapper(), that.getZoneStringsWrapper())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
                && ((localPatternChars != null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
                  && localPatternChars.equals(that.localPatternChars))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
                 || (localPatternChars == null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
                  && that.localPatternChars == null)));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
    // =======================privates===============================
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
     * Useful constant for defining time zone offsets.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
    static final int millisPerHour = 60*60*1000;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
    /**
7003
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   637
     * Cache to hold DateFormatSymbols instances per Locale.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
     */
7003
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   639
    private static final ConcurrentMap<Locale, SoftReference<DateFormatSymbols>> cachedInstances
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   640
        = new ConcurrentHashMap<>(3);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
12549
db2c42dabfa4 7163865: Performance improvement for DateFormatSymbols.getZoneIndex(String)
youdwei
parents: 10419
diff changeset
   642
    private transient int lastZoneIndex = 0;
db2c42dabfa4 7163865: Performance improvement for DateFormatSymbols.getZoneIndex(String)
youdwei
parents: 10419
diff changeset
   643
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
    private void initializeData(Locale desiredLocale) {
7003
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   645
        locale = desiredLocale;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
7003
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   647
        // Copy values of a cached instance if any.
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   648
        SoftReference<DateFormatSymbols> ref = cachedInstances.get(locale);
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   649
        DateFormatSymbols dfs;
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   650
        if (ref != null && (dfs = ref.get()) != null) {
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   651
            copyMembers(dfs, this);
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   652
            return;
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   653
        }
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   654
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   655
        // Initialize the fields from the ResourceBundle for locale.
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   656
        LocaleProviderAdapter adapter = LocaleProviderAdapter.getAdapter(DateFormatSymbolsProvider.class, locale);
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   657
        // Avoid any potential recursions
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   658
        switch (adapter.getAdapterType()) {
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   659
        case HOST:
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   660
        case SPI:
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   661
            adapter = LocaleProviderAdapter.getResourceBundleBased();
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   662
            break;
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   663
        }
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   664
        ResourceBundle resource = adapter.getLocaleData().getDateFormatData(locale);
7003
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   665
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   666
        eras = resource.getStringArray("Eras");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
        months = resource.getStringArray("MonthNames");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
        shortMonths = resource.getStringArray("MonthAbbreviations");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
        ampms = resource.getStringArray("AmPmMarkers");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
        localPatternChars = resource.getString("DateTimePatternChars");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
7003
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   672
        // Day of week names are stored in a 1-based array.
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   673
        weekdays = toOneBasedArray(resource.getStringArray("DayNames"));
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   674
        shortWeekdays = toOneBasedArray(resource.getStringArray("DayAbbreviations"));
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   675
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   676
        // Put a clone in the cache
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   677
        ref = new SoftReference<>((DateFormatSymbols)this.clone());
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   678
        SoftReference<DateFormatSymbols> x = cachedInstances.putIfAbsent(locale, ref);
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   679
        if (x != null) {
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   680
            DateFormatSymbols y = x.get();
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   681
            if (y == null) {
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   682
                // Replace the empty SoftReference with ref.
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   683
                cachedInstances.put(locale, ref);
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   684
            }
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   685
        }
7003
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   686
    }
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   687
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   688
    private static String[] toOneBasedArray(String[] src) {
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   689
        int len = src.length;
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   690
        String[] dst = new String[len + 1];
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   691
        dst[0] = "";
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   692
        for (int i = 0; i < len; i++) {
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   693
            dst[i + 1] = src[i];
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   694
        }
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   695
        return dst;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
     * Package private: used by SimpleDateFormat
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
     * Gets the index for the given time zone ID to obtain the time zone
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
     * strings for formatting. The time zone ID is just for programmatic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
     * lookup. NOT LOCALIZED!!!
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
     * @param ID the given time zone ID.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
     * @return the index of the given time zone ID.  Returns -1 if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
     * the given time zone ID can't be located in the DateFormatSymbols object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
     * @see java.util.SimpleTimeZone
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
     */
12549
db2c42dabfa4 7163865: Performance improvement for DateFormatSymbols.getZoneIndex(String)
youdwei
parents: 10419
diff changeset
   708
    final int getZoneIndex(String ID) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
        String[][] zoneStrings = getZoneStringsWrapper();
12549
db2c42dabfa4 7163865: Performance improvement for DateFormatSymbols.getZoneIndex(String)
youdwei
parents: 10419
diff changeset
   710
db2c42dabfa4 7163865: Performance improvement for DateFormatSymbols.getZoneIndex(String)
youdwei
parents: 10419
diff changeset
   711
        /*
db2c42dabfa4 7163865: Performance improvement for DateFormatSymbols.getZoneIndex(String)
youdwei
parents: 10419
diff changeset
   712
         * getZoneIndex has been re-written for performance reasons. instead of
db2c42dabfa4 7163865: Performance improvement for DateFormatSymbols.getZoneIndex(String)
youdwei
parents: 10419
diff changeset
   713
         * traversing the zoneStrings array every time, we cache the last used zone
db2c42dabfa4 7163865: Performance improvement for DateFormatSymbols.getZoneIndex(String)
youdwei
parents: 10419
diff changeset
   714
         * index
db2c42dabfa4 7163865: Performance improvement for DateFormatSymbols.getZoneIndex(String)
youdwei
parents: 10419
diff changeset
   715
         */
db2c42dabfa4 7163865: Performance improvement for DateFormatSymbols.getZoneIndex(String)
youdwei
parents: 10419
diff changeset
   716
        if (lastZoneIndex < zoneStrings.length && ID.equals(zoneStrings[lastZoneIndex][0])) {
db2c42dabfa4 7163865: Performance improvement for DateFormatSymbols.getZoneIndex(String)
youdwei
parents: 10419
diff changeset
   717
            return lastZoneIndex;
db2c42dabfa4 7163865: Performance improvement for DateFormatSymbols.getZoneIndex(String)
youdwei
parents: 10419
diff changeset
   718
        }
db2c42dabfa4 7163865: Performance improvement for DateFormatSymbols.getZoneIndex(String)
youdwei
parents: 10419
diff changeset
   719
db2c42dabfa4 7163865: Performance improvement for DateFormatSymbols.getZoneIndex(String)
youdwei
parents: 10419
diff changeset
   720
        /* slow path, search entire list */
db2c42dabfa4 7163865: Performance improvement for DateFormatSymbols.getZoneIndex(String)
youdwei
parents: 10419
diff changeset
   721
        for (int index = 0; index < zoneStrings.length; index++) {
db2c42dabfa4 7163865: Performance improvement for DateFormatSymbols.getZoneIndex(String)
youdwei
parents: 10419
diff changeset
   722
            if (ID.equals(zoneStrings[index][0])) {
db2c42dabfa4 7163865: Performance improvement for DateFormatSymbols.getZoneIndex(String)
youdwei
parents: 10419
diff changeset
   723
                lastZoneIndex = index;
db2c42dabfa4 7163865: Performance improvement for DateFormatSymbols.getZoneIndex(String)
youdwei
parents: 10419
diff changeset
   724
                return index;
db2c42dabfa4 7163865: Performance improvement for DateFormatSymbols.getZoneIndex(String)
youdwei
parents: 10419
diff changeset
   725
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
     * Wrapper method to the getZoneStrings(), which is called from inside
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
     * the java.text package and not to mutate the returned arrays, so that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
     * it does not need to create a defensive copy.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
    final String[][] getZoneStringsWrapper() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
        if (isSubclassObject()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
            return getZoneStrings();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
            return getZoneStringsImpl(false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   744
    private String[][] getZoneStringsImpl(boolean needsCopy) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
        if (zoneStrings == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
            zoneStrings = TimeZoneNameUtility.getZoneStrings(locale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
        if (!needsCopy) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
            return zoneStrings;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
        int len = zoneStrings.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
        String[][] aCopy = new String[len][];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
        for (int i = 0; i < len; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
            aCopy[i] = Arrays.copyOf(zoneStrings[i], zoneStrings[i].length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
        return aCopy;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   761
    private boolean isSubclassObject() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
        return !getClass().getName().equals("java.text.DateFormatSymbols");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
     * Clones all the data members from the source DateFormatSymbols to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
     * the target DateFormatSymbols. This is only for subclasses.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
     * @param src the source DateFormatSymbols.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
     * @param dst the target DateFormatSymbols.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
     */
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   771
    private void copyMembers(DateFormatSymbols src, DateFormatSymbols dst)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
        dst.eras = Arrays.copyOf(src.eras, src.eras.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
        dst.months = Arrays.copyOf(src.months, src.months.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
        dst.shortMonths = Arrays.copyOf(src.shortMonths, src.shortMonths.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
        dst.weekdays = Arrays.copyOf(src.weekdays, src.weekdays.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
        dst.shortWeekdays = Arrays.copyOf(src.shortWeekdays, src.shortWeekdays.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
        dst.ampms = Arrays.copyOf(src.ampms, src.ampms.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
        if (src.zoneStrings != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
            dst.zoneStrings = src.getZoneStringsImpl(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
            dst.zoneStrings = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
        }
6491
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
   784
        dst.localPatternChars = src.localPatternChars;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
     * Write out the default serializable data, after ensuring the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
     * <code>zoneStrings</code> field is initialized in order to make
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
     * sure the backward compatibility.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
    private void writeObject(ObjectOutputStream stream) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
        if (zoneStrings == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
            zoneStrings = TimeZoneNameUtility.getZoneStrings(locale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
        stream.defaultWriteObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
}