jdk/src/java.base/share/classes/java/text/DateFormatSymbols.java
author darcy
Mon, 07 Mar 2016 12:10:55 -0800
changeset 36253 652d06266511
parent 36241 69169578a67f
child 36951 0953f2a2cb14
permissions -rw-r--r--
8151393: Revert changes for JDK-8087104 Reviewed-by: alanb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
36253
652d06266511 8151393: Revert changes for JDK-8087104
darcy
parents: 36241
diff changeset
     2
 * Copyright (c) 1996, 2013, 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;
14172
fad44417edf8 7200341: DateFormatSymbols.hashCode() throws ArrayIndexOutOfBoundsException in some circumstances
naoto
parents: 13583
diff changeset
    48
import java.util.Objects;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
import java.util.ResourceBundle;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
import java.util.TimeZone;
7003
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
    51
import java.util.concurrent.ConcurrentHashMap;
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
    52
import java.util.concurrent.ConcurrentMap;
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
    53
import sun.util.locale.provider.LocaleProviderAdapter;
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
    54
import sun.util.locale.provider.LocaleServiceProviderPool;
15260
7af2d7a87806 7162007: Clean up i18n related caches
naoto
parents: 14765
diff changeset
    55
import sun.util.locale.provider.ResourceBundleBasedAdapter;
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
    56
import sun.util.locale.provider.TimeZoneNameUtility;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * <code>DateFormatSymbols</code> is a public class for encapsulating
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * localizable date-time formatting data, such as the names of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 * months, the names of the days of the week, and the time zone data.
17708
eccbcb1b38be 7056126: DateFormatSymbols documentation has incorrect description about DateFormat
naoto
parents: 16010
diff changeset
    62
 * <code>SimpleDateFormat</code> uses
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * <code>DateFormatSymbols</code> to encapsulate this information.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * Typically you shouldn't use <code>DateFormatSymbols</code> directly.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 * Rather, you are encouraged to create a date-time formatter with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 * <code>DateFormat</code> class's factory methods: <code>getTimeInstance</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 * <code>getDateInstance</code>, or <code>getDateTimeInstance</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 * These methods automatically create a <code>DateFormatSymbols</code> for
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 * the formatter so that you don't have to. After the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 * formatter is created, you may modify its format pattern using the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 * <code>setPattern</code> method. For more information about
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 * creating formatters using <code>DateFormat</code>'s factory methods,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 * see {@link DateFormat}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 * If you decide to create a date-time formatter with a specific
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 * format pattern for a specific locale, you can do so with:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 * <blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 * new SimpleDateFormat(aPattern, DateFormatSymbols.getInstance(aLocale)).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 * </blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 * <code>DateFormatSymbols</code> objects are cloneable. When you obtain
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 * a <code>DateFormatSymbols</code> object, feel free to modify the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
 * date-time formatting data. For instance, you can replace the localized
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
 * date-time format pattern characters with the ones that you feel easy
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
 * to remember. Or you can change the representative cities
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
 * to your favorite ones.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
 * New <code>DateFormatSymbols</code> subclasses may be added to support
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
 * <code>SimpleDateFormat</code> for date-time formatting for additional locales.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
 * @see          DateFormat
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
 * @see          SimpleDateFormat
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
 * @see          java.util.SimpleTimeZone
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
 * @author       Chen-Lieh Huang
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
public class DateFormatSymbols implements Serializable, Cloneable {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     * Construct a DateFormatSymbols object by loading format data from
16010
2727163b5df5 7092447: Clarify the default locale used in each locale sensitive operation
naoto
parents: 15260
diff changeset
   107
     * resources for the default {@link java.util.Locale.Category#FORMAT FORMAT}
2727163b5df5 7092447: Clarify the default locale used in each locale sensitive operation
naoto
parents: 15260
diff changeset
   108
     * locale. This constructor can only
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     * construct instances for the locales supported by the Java
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     * runtime environment, not for those supported by installed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     * {@link java.text.spi.DateFormatSymbolsProvider DateFormatSymbolsProvider}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     * implementations. For full locale coverage, use the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     * {@link #getInstance(Locale) getInstance} method.
16010
2727163b5df5 7092447: Clarify the default locale used in each locale sensitive operation
naoto
parents: 15260
diff changeset
   114
     * <p>This is equivalent to calling
2727163b5df5 7092447: Clarify the default locale used in each locale sensitive operation
naoto
parents: 15260
diff changeset
   115
     * {@link #DateFormatSymbols(Locale)
2727163b5df5 7092447: Clarify the default locale used in each locale sensitive operation
naoto
parents: 15260
diff changeset
   116
     *     DateFormatSymbols(Locale.getDefault(Locale.Category.FORMAT))}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     * @see #getInstance()
16010
2727163b5df5 7092447: Clarify the default locale used in each locale sensitive operation
naoto
parents: 15260
diff changeset
   118
     * @see java.util.Locale#getDefault(java.util.Locale.Category)
2727163b5df5 7092447: Clarify the default locale used in each locale sensitive operation
naoto
parents: 15260
diff changeset
   119
     * @see java.util.Locale.Category#FORMAT
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * @exception  java.util.MissingResourceException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     *             if the resources for the default locale cannot be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     *             found or cannot be loaded.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
    public DateFormatSymbols()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    {
6489
9e7015635425 4700857: RFE: separating user locale and user interface locale
naoto
parents: 5506
diff changeset
   126
        initializeData(Locale.getDefault(Locale.Category.FORMAT));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     * Construct a DateFormatSymbols object by loading format data from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     * resources for the given locale. This constructor can only
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     * construct instances for the locales supported by the Java
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     * runtime environment, not for those supported by installed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     * {@link java.text.spi.DateFormatSymbolsProvider DateFormatSymbolsProvider}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     * implementations. For full locale coverage, use the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     * {@link #getInstance(Locale) getInstance} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     *
19054
a64012cb49d6 8021108: Clean up doclint warnings and errors in java.text package
peytoia
parents: 17708
diff changeset
   138
     * @param locale the desired locale
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     * @see #getInstance(Locale)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     * @exception  java.util.MissingResourceException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     *             if the resources for the specified locale cannot be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     *             found or cannot be loaded.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
    public DateFormatSymbols(Locale locale)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
        initializeData(locale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     * Era strings. For example: "AD" and "BC".  An array of 2 strings,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     * indexed by <code>Calendar.BC</code> and <code>Calendar.AD</code>.
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 eras[] = 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
     * Month strings. For example: "January", "February", etc.  An array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     * of 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
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    String months[] = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     * Short month strings. For example: "Jan", "Feb", etc.  An array of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     * 13 strings (some calendars have 13 months), indexed by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     * <code>Calendar.JANUARY</code>, <code>Calendar.FEBRUARY</code>, etc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
    String shortMonths[] = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     * Weekday strings. For example: "Sunday", "Monday", etc.  An array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     * of 8 strings, indexed by <code>Calendar.SUNDAY</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     * <code>Calendar.MONDAY</code>, etc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     * The element <code>weekdays[0]</code> is ignored.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
    String weekdays[] = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
     * Short weekday strings. For example: "Sun", "Mon", etc.  An array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
     * of 8 strings, indexed by <code>Calendar.SUNDAY</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     * <code>Calendar.MONDAY</code>, etc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     * The element <code>shortWeekdays[0]</code> is ignored.
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 shortWeekdays[] = 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
     * AM and PM strings. For example: "AM" and "PM".  An array of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
     * 2 strings, indexed by <code>Calendar.AM</code> and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     * <code>Calendar.PM</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
    String ampms[] = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     * Localized names of time zones in this locale.  This is a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     * two-dimensional array of strings of size <em>n</em> by <em>m</em>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     * where <em>m</em> is at least 5.  Each of the <em>n</em> rows is an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
     * entry containing the localized names for a single <code>TimeZone</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
     * Each such row contains (with <code>i</code> ranging from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
     * 0..<em>n</em>-1):
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
     * <li><code>zoneStrings[i][0]</code> - time zone ID</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     * <li><code>zoneStrings[i][1]</code> - long name of zone in standard
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     * time</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     * <li><code>zoneStrings[i][2]</code> - short name of zone in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
     * standard time</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     * <li><code>zoneStrings[i][3]</code> - long name of zone in daylight
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     * saving time</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     * <li><code>zoneStrings[i][4]</code> - short name of zone in daylight
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     * saving time</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
     * The zone ID is <em>not</em> localized; it's one of the valid IDs of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
     * the {@link java.util.TimeZone TimeZone} class that are not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
     * <a href="../java/util/TimeZone.html#CustomID">custom IDs</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     * All other entries are localized names.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     * @see java.util.TimeZone
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
    String zoneStrings[][] = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     * Indicates that zoneStrings is set externally with setZoneStrings() method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
    transient boolean isZoneStringsSet = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
     * Unlocalized date-time pattern characters. For example: 'y', 'd', etc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
     * All locales use the same these unlocalized pattern characters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
     */
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   235
    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
   236
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_ERA                  =  0; // G
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_YEAR                 =  1; // y
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_MONTH                =  2; // M
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_MONTH         =  3; // d
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_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
   242
    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
   243
    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
   244
    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
   245
    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
   246
    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
   247
    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
   248
    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
   249
    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
   250
    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
   251
    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
   252
    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
   253
    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
   254
    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
   255
    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
   256
    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
   257
    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
   258
    static final int PATTERN_ISO_ZONE             = 21; // X
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   259
    static final int PATTERN_MONTH_STANDALONE     = 22; // L
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
     * Localized date-time pattern characters. For example, a locale may
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
     * wish to use 'u' rather than 'y' to represent years in its date format
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
     * pattern strings.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
     * This string must be exactly 18 characters long, with the index of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
     * the characters described by <code>DateFormat.ERA_FIELD</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
     * <code>DateFormat.YEAR_FIELD</code>, etc.  Thus, if the string were
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
     * "Xz...", then localized patterns would use 'X' for era and 'z' for year.
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
    String  localPatternChars = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
     * The locale which is used for initializing this DateFormatSymbols object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
    Locale locale = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
    /* use serialVersionUID from JDK 1.1.4 for interoperability */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
    static final long serialVersionUID = -5987973545549424702L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
     * Returns an array of all locales for which the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
     * <code>getInstance</code> methods of this class can return
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
     * localized instances.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
     * The returned array represents the union of locales supported by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
     * Java runtime and by installed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
     * {@link java.text.spi.DateFormatSymbolsProvider DateFormatSymbolsProvider}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
     * implementations.  It must contain at least a <code>Locale</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
     * instance equal to {@link java.util.Locale#US Locale.US}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
     * @return An array of locales for which localized
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
     *         <code>DateFormatSymbols</code> instances are available.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
    public static Locale[] getAvailableLocales() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
        LocaleServiceProviderPool pool=
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
            LocaleServiceProviderPool.getPool(DateFormatSymbolsProvider.class);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
        return pool.getAvailableLocales();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
     * Gets the <code>DateFormatSymbols</code> instance for the default
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
     * locale.  This method provides access to <code>DateFormatSymbols</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
     * instances for locales supported by the Java runtime itself as well
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
     * as for those supported by installed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
     * {@link java.text.spi.DateFormatSymbolsProvider DateFormatSymbolsProvider}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
     * implementations.
16010
2727163b5df5 7092447: Clarify the default locale used in each locale sensitive operation
naoto
parents: 15260
diff changeset
   311
     * <p>This is equivalent to calling {@link #getInstance(Locale)
2727163b5df5 7092447: Clarify the default locale used in each locale sensitive operation
naoto
parents: 15260
diff changeset
   312
     *     getInstance(Locale.getDefault(Locale.Category.FORMAT))}.
2727163b5df5 7092447: Clarify the default locale used in each locale sensitive operation
naoto
parents: 15260
diff changeset
   313
     * @see java.util.Locale#getDefault(java.util.Locale.Category)
2727163b5df5 7092447: Clarify the default locale used in each locale sensitive operation
naoto
parents: 15260
diff changeset
   314
     * @see java.util.Locale.Category#FORMAT
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
     * @return a <code>DateFormatSymbols</code> instance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
    public static final DateFormatSymbols getInstance() {
6489
9e7015635425 4700857: RFE: separating user locale and user interface locale
naoto
parents: 5506
diff changeset
   319
        return getInstance(Locale.getDefault(Locale.Category.FORMAT));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
     * Gets the <code>DateFormatSymbols</code> instance for the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
     * locale.  This method provides access to <code>DateFormatSymbols</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
     * instances for locales supported by the Java runtime itself as well
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
     * as for those supported by installed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
     * {@link java.text.spi.DateFormatSymbolsProvider DateFormatSymbolsProvider}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
     * implementations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
     * @param locale the given locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
     * @return a <code>DateFormatSymbols</code> instance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     * @exception NullPointerException if <code>locale</code> is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
    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
   335
        DateFormatSymbols dfs = getProviderInstance(locale);
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   336
        if (dfs != null) {
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   337
            return dfs;
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   338
        }
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   339
        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
   340
    }
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   341
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
     * 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
   344
     * 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
   345
     * 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
   346
     * an application.
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   347
     */
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   348
    static final DateFormatSymbols getInstanceRef(Locale locale) {
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   349
        DateFormatSymbols dfs = getProviderInstance(locale);
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   350
        if (dfs != null) {
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   351
            return dfs;
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   352
        }
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   353
        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
   354
    }
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   355
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   356
    private static DateFormatSymbols getProviderInstance(Locale locale) {
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   357
        LocaleProviderAdapter adapter = LocaleProviderAdapter.getAdapter(DateFormatSymbolsProvider.class, locale);
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   358
        DateFormatSymbolsProvider provider = adapter.getDateFormatSymbolsProvider();
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   359
        DateFormatSymbols dfsyms = provider.getInstance(locale);
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   360
        if (dfsyms == null) {
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   361
            provider = LocaleProviderAdapter.forJRE().getDateFormatSymbolsProvider();
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   362
            dfsyms = provider.getInstance(locale);
7003
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   363
        }
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   364
        return dfsyms;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
     * Gets era strings. For example: "AD" and "BC".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
     * @return the era strings.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
    public String[] getEras() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
        return Arrays.copyOf(eras, eras.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
     * Sets era strings. For example: "AD" and "BC".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
     * @param newEras the new era strings.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
    public void setEras(String[] newEras) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
        eras = Arrays.copyOf(newEras, newEras.length);
14172
fad44417edf8 7200341: DateFormatSymbols.hashCode() throws ArrayIndexOutOfBoundsException in some circumstances
naoto
parents: 13583
diff changeset
   381
        cachedHashCode = 0;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
     * Gets month strings. For example: "January", "February", etc.
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   386
     *
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   387
     * <p>If the language requires different forms for formatting and
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   388
     * stand-alone usages, this method returns month names in the
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   389
     * formatting form. For example, the preferred month name for
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   390
     * January in the Czech language is <em>ledna</em> in the
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   391
     * formatting form, while it is <em>leden</em> in the stand-alone
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   392
     * form. This method returns {@code "ledna"} in this case. Refer
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   393
     * to the <a href="http://unicode.org/reports/tr35/#Calendar_Elements">
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   394
     * Calendar Elements in the Unicode Locale Data Markup Language
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   395
     * (LDML) specification</a> for more details.
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   396
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
     * @return the month strings.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
    public String[] getMonths() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
        return Arrays.copyOf(months, months.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
     * Sets month strings. For example: "January", "February", etc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
     * @param newMonths the new month strings.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
    public void setMonths(String[] newMonths) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
        months = Arrays.copyOf(newMonths, newMonths.length);
14172
fad44417edf8 7200341: DateFormatSymbols.hashCode() throws ArrayIndexOutOfBoundsException in some circumstances
naoto
parents: 13583
diff changeset
   409
        cachedHashCode = 0;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
     * Gets short month strings. For example: "Jan", "Feb", etc.
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   414
     *
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   415
     * <p>If the language requires different forms for formatting and
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   416
     * stand-alone usages, This method returns short month names in
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   417
     * the formatting form. For example, the preferred abbreviation
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   418
     * 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
   419
     * formatting form, while it is <em>gen.</em> in the stand-alone
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   420
     * form. This method returns {@code "de gen."} in this case. Refer
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   421
     * to the <a href="http://unicode.org/reports/tr35/#Calendar_Elements">
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   422
     * Calendar Elements in the Unicode Locale Data Markup Language
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   423
     * (LDML) specification</a> for more details.
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   424
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
     * @return the short month strings.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
    public String[] getShortMonths() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
        return Arrays.copyOf(shortMonths, shortMonths.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
     * Sets short month strings. For example: "Jan", "Feb", etc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
     * @param newShortMonths the new short month strings.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
    public void setShortMonths(String[] newShortMonths) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
        shortMonths = Arrays.copyOf(newShortMonths, newShortMonths.length);
14172
fad44417edf8 7200341: DateFormatSymbols.hashCode() throws ArrayIndexOutOfBoundsException in some circumstances
naoto
parents: 13583
diff changeset
   437
        cachedHashCode = 0;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
     * Gets weekday strings. For example: "Sunday", "Monday", etc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
     * @return the weekday strings. Use <code>Calendar.SUNDAY</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
     * <code>Calendar.MONDAY</code>, etc. to index the result array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
    public String[] getWeekdays() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
        return Arrays.copyOf(weekdays, weekdays.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
     * Sets weekday strings. For example: "Sunday", "Monday", etc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
     * @param newWeekdays the new weekday strings. The array should
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
     * be indexed by <code>Calendar.SUNDAY</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
     * <code>Calendar.MONDAY</code>, etc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
    public void setWeekdays(String[] newWeekdays) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
        weekdays = Arrays.copyOf(newWeekdays, newWeekdays.length);
14172
fad44417edf8 7200341: DateFormatSymbols.hashCode() throws ArrayIndexOutOfBoundsException in some circumstances
naoto
parents: 13583
diff changeset
   457
        cachedHashCode = 0;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
     * Gets short weekday strings. For example: "Sun", "Mon", etc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
     * @return the short weekday strings. Use <code>Calendar.SUNDAY</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
     * <code>Calendar.MONDAY</code>, etc. to index the result array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
    public String[] getShortWeekdays() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
        return Arrays.copyOf(shortWeekdays, shortWeekdays.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
     * Sets short weekday strings. For example: "Sun", "Mon", etc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
     * @param newShortWeekdays the new short weekday strings. The array should
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
     * be indexed by <code>Calendar.SUNDAY</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
     * <code>Calendar.MONDAY</code>, etc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
    public void setShortWeekdays(String[] newShortWeekdays) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
        shortWeekdays = Arrays.copyOf(newShortWeekdays, newShortWeekdays.length);
14172
fad44417edf8 7200341: DateFormatSymbols.hashCode() throws ArrayIndexOutOfBoundsException in some circumstances
naoto
parents: 13583
diff changeset
   477
        cachedHashCode = 0;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
     * Gets ampm strings. For example: "AM" and "PM".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
     * @return the ampm strings.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
    public String[] getAmPmStrings() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
        return Arrays.copyOf(ampms, ampms.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
     * Sets ampm strings. For example: "AM" and "PM".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
     * @param newAmpms the new ampm strings.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
    public void setAmPmStrings(String[] newAmpms) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
        ampms = Arrays.copyOf(newAmpms, newAmpms.length);
14172
fad44417edf8 7200341: DateFormatSymbols.hashCode() throws ArrayIndexOutOfBoundsException in some circumstances
naoto
parents: 13583
diff changeset
   494
        cachedHashCode = 0;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
     * Gets time zone strings.  Use of this method is discouraged; use
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
     * {@link java.util.TimeZone#getDisplayName() TimeZone.getDisplayName()}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
     * instead.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
     * The value returned is a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
     * two-dimensional array of strings of size <em>n</em> by <em>m</em>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
     * where <em>m</em> is at least 5.  Each of the <em>n</em> rows is an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
     * entry containing the localized names for a single <code>TimeZone</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
     * Each such row contains (with <code>i</code> ranging from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
     * 0..<em>n</em>-1):
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
     * <li><code>zoneStrings[i][0]</code> - time zone ID</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
     * <li><code>zoneStrings[i][1]</code> - long name of zone in standard
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
     * time</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
     * <li><code>zoneStrings[i][2]</code> - short name of zone in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
     * standard time</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
     * <li><code>zoneStrings[i][3]</code> - long name of zone in daylight
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
     * saving time</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
     * <li><code>zoneStrings[i][4]</code> - short name of zone in daylight
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
     * saving time</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
     * The zone ID is <em>not</em> localized; it's one of the valid IDs of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
     * the {@link java.util.TimeZone TimeZone} class that are not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
     * <a href="../util/TimeZone.html#CustomID">custom IDs</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
     * All other entries are localized names.  If a zone does not implement
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
     * daylight saving time, the daylight saving time names should not be used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
     * If {@link #setZoneStrings(String[][]) setZoneStrings} has been called
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
     * on this <code>DateFormatSymbols</code> instance, then the strings
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
     * provided by that call are returned. Otherwise, the returned array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
     * contains names provided by the Java runtime and by installed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
     * {@link java.util.spi.TimeZoneNameProvider TimeZoneNameProvider}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
     * implementations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
     * @return the time zone strings.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
     * @see #setZoneStrings(String[][])
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
    public String[][] getZoneStrings() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
        return getZoneStringsImpl(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
     * Sets time zone strings.  The argument must be a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
     * two-dimensional array of strings of size <em>n</em> by <em>m</em>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
     * where <em>m</em> is at least 5.  Each of the <em>n</em> rows is an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
     * entry containing the localized names for a single <code>TimeZone</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
     * Each such row contains (with <code>i</code> ranging from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
     * 0..<em>n</em>-1):
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
     * <li><code>zoneStrings[i][0]</code> - time zone ID</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
     * <li><code>zoneStrings[i][1]</code> - long name of zone in standard
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
     * time</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
     * <li><code>zoneStrings[i][2]</code> - short name of zone in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
     * standard time</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
     * <li><code>zoneStrings[i][3]</code> - long name of zone in daylight
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
     * saving time</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
     * <li><code>zoneStrings[i][4]</code> - short name of zone in daylight
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
     * saving time</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
     * The zone ID is <em>not</em> localized; it's one of the valid IDs of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
     * the {@link java.util.TimeZone TimeZone} class that are not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
     * <a href="../util/TimeZone.html#CustomID">custom IDs</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
     * All other entries are localized names.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
     * @param newZoneStrings the new time zone strings.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
     * @exception IllegalArgumentException if the length of any row in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
     *    <code>newZoneStrings</code> is less than 5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
     * @exception NullPointerException if <code>newZoneStrings</code> is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
     * @see #getZoneStrings()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
    public void setZoneStrings(String[][] newZoneStrings) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
        String[][] aCopy = new String[newZoneStrings.length][];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
        for (int i = 0; i < newZoneStrings.length; ++i) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
            int len = newZoneStrings[i].length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
            if (len < 5) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
                throw new IllegalArgumentException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
            aCopy[i] = Arrays.copyOf(newZoneStrings[i], len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
        zoneStrings = aCopy;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
        isZoneStringsSet = true;
14172
fad44417edf8 7200341: DateFormatSymbols.hashCode() throws ArrayIndexOutOfBoundsException in some circumstances
naoto
parents: 13583
diff changeset
   579
        cachedHashCode = 0;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
     * Gets localized date-time pattern characters. For example: 'u', 't', etc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
     * @return the localized date-time pattern characters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
    public String getLocalPatternChars() {
6491
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
   587
        return localPatternChars;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
     * Sets localized date-time pattern characters. For example: 'u', 't', etc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
     * @param newLocalPatternChars the new localized date-time
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
     * pattern characters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
    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
   596
        // 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
   597
        localPatternChars = newLocalPatternChars.toString();
14172
fad44417edf8 7200341: DateFormatSymbols.hashCode() throws ArrayIndexOutOfBoundsException in some circumstances
naoto
parents: 13583
diff changeset
   598
        cachedHashCode = 0;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
     * Overrides Cloneable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
    public Object clone()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
        try
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
            DateFormatSymbols other = (DateFormatSymbols)super.clone();
36253
652d06266511 8151393: Revert changes for JDK-8087104
darcy
parents: 36241
diff changeset
   609
            copyMembers(this, other);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
            return other;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
        } catch (CloneNotSupportedException e) {
10419
12c063b39232 7084245: Update usages of InternalError to use exception chaining
sherman
parents: 7003
diff changeset
   612
            throw new InternalError(e);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
     * Override hashCode.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
     * Generates a hash code for the DateFormatSymbols object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
     */
14172
fad44417edf8 7200341: DateFormatSymbols.hashCode() throws ArrayIndexOutOfBoundsException in some circumstances
naoto
parents: 13583
diff changeset
   620
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
    public int hashCode() {
14172
fad44417edf8 7200341: DateFormatSymbols.hashCode() throws ArrayIndexOutOfBoundsException in some circumstances
naoto
parents: 13583
diff changeset
   622
        int hashCode = cachedHashCode;
fad44417edf8 7200341: DateFormatSymbols.hashCode() throws ArrayIndexOutOfBoundsException in some circumstances
naoto
parents: 13583
diff changeset
   623
        if (hashCode == 0) {
fad44417edf8 7200341: DateFormatSymbols.hashCode() throws ArrayIndexOutOfBoundsException in some circumstances
naoto
parents: 13583
diff changeset
   624
            hashCode = 5;
fad44417edf8 7200341: DateFormatSymbols.hashCode() throws ArrayIndexOutOfBoundsException in some circumstances
naoto
parents: 13583
diff changeset
   625
            hashCode = 11 * hashCode + Arrays.hashCode(eras);
fad44417edf8 7200341: DateFormatSymbols.hashCode() throws ArrayIndexOutOfBoundsException in some circumstances
naoto
parents: 13583
diff changeset
   626
            hashCode = 11 * hashCode + Arrays.hashCode(months);
fad44417edf8 7200341: DateFormatSymbols.hashCode() throws ArrayIndexOutOfBoundsException in some circumstances
naoto
parents: 13583
diff changeset
   627
            hashCode = 11 * hashCode + Arrays.hashCode(shortMonths);
fad44417edf8 7200341: DateFormatSymbols.hashCode() throws ArrayIndexOutOfBoundsException in some circumstances
naoto
parents: 13583
diff changeset
   628
            hashCode = 11 * hashCode + Arrays.hashCode(weekdays);
fad44417edf8 7200341: DateFormatSymbols.hashCode() throws ArrayIndexOutOfBoundsException in some circumstances
naoto
parents: 13583
diff changeset
   629
            hashCode = 11 * hashCode + Arrays.hashCode(shortWeekdays);
fad44417edf8 7200341: DateFormatSymbols.hashCode() throws ArrayIndexOutOfBoundsException in some circumstances
naoto
parents: 13583
diff changeset
   630
            hashCode = 11 * hashCode + Arrays.hashCode(ampms);
fad44417edf8 7200341: DateFormatSymbols.hashCode() throws ArrayIndexOutOfBoundsException in some circumstances
naoto
parents: 13583
diff changeset
   631
            hashCode = 11 * hashCode + Arrays.deepHashCode(getZoneStringsWrapper());
fad44417edf8 7200341: DateFormatSymbols.hashCode() throws ArrayIndexOutOfBoundsException in some circumstances
naoto
parents: 13583
diff changeset
   632
            hashCode = 11 * hashCode + Objects.hashCode(localPatternChars);
34774
03b4e6dc367b 8145680: Remove unnecessary explicit initialization of volatile variables in java.base
redestad
parents: 25859
diff changeset
   633
            if (hashCode != 0) {
03b4e6dc367b 8145680: Remove unnecessary explicit initialization of volatile variables in java.base
redestad
parents: 25859
diff changeset
   634
                cachedHashCode = hashCode;
03b4e6dc367b 8145680: Remove unnecessary explicit initialization of volatile variables in java.base
redestad
parents: 25859
diff changeset
   635
            }
14172
fad44417edf8 7200341: DateFormatSymbols.hashCode() throws ArrayIndexOutOfBoundsException in some circumstances
naoto
parents: 13583
diff changeset
   636
        }
fad44417edf8 7200341: DateFormatSymbols.hashCode() throws ArrayIndexOutOfBoundsException in some circumstances
naoto
parents: 13583
diff changeset
   637
fad44417edf8 7200341: DateFormatSymbols.hashCode() throws ArrayIndexOutOfBoundsException in some circumstances
naoto
parents: 13583
diff changeset
   638
        return hashCode;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
     * Override equals
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
    public boolean equals(Object obj)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
        if (this == obj) return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
        if (obj == null || getClass() != obj.getClass()) return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
        DateFormatSymbols that = (DateFormatSymbols) obj;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
        return (Arrays.equals(eras, that.eras)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
                && Arrays.equals(months, that.months)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
                && Arrays.equals(shortMonths, that.shortMonths)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
                && Arrays.equals(weekdays, that.weekdays)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
                && Arrays.equals(shortWeekdays, that.shortWeekdays)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
                && Arrays.equals(ampms, that.ampms)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
                && Arrays.deepEquals(getZoneStringsWrapper(), that.getZoneStringsWrapper())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
                && ((localPatternChars != null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
                  && localPatternChars.equals(that.localPatternChars))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
                 || (localPatternChars == null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
                  && that.localPatternChars == null)));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
    // =======================privates===============================
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
     * Useful constant for defining time zone offsets.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
    static final int millisPerHour = 60*60*1000;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
    /**
7003
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   670
     * Cache to hold DateFormatSymbols instances per Locale.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
     */
36253
652d06266511 8151393: Revert changes for JDK-8087104
darcy
parents: 36241
diff changeset
   672
    private static final ConcurrentMap<Locale, SoftReference<DateFormatSymbols>> cachedInstances
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   673
        = new ConcurrentHashMap<>(3);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
34774
03b4e6dc367b 8145680: Remove unnecessary explicit initialization of volatile variables in java.base
redestad
parents: 25859
diff changeset
   675
    private transient int lastZoneIndex;
12549
db2c42dabfa4 7163865: Performance improvement for DateFormatSymbols.getZoneIndex(String)
youdwei
parents: 10419
diff changeset
   676
14172
fad44417edf8 7200341: DateFormatSymbols.hashCode() throws ArrayIndexOutOfBoundsException in some circumstances
naoto
parents: 13583
diff changeset
   677
    /**
fad44417edf8 7200341: DateFormatSymbols.hashCode() throws ArrayIndexOutOfBoundsException in some circumstances
naoto
parents: 13583
diff changeset
   678
     * Cached hash code
fad44417edf8 7200341: DateFormatSymbols.hashCode() throws ArrayIndexOutOfBoundsException in some circumstances
naoto
parents: 13583
diff changeset
   679
     */
34774
03b4e6dc367b 8145680: Remove unnecessary explicit initialization of volatile variables in java.base
redestad
parents: 25859
diff changeset
   680
    transient volatile int cachedHashCode;
14172
fad44417edf8 7200341: DateFormatSymbols.hashCode() throws ArrayIndexOutOfBoundsException in some circumstances
naoto
parents: 13583
diff changeset
   681
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
    private void initializeData(Locale desiredLocale) {
7003
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   683
        locale = desiredLocale;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
7003
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   685
        // Copy values of a cached instance if any.
36253
652d06266511 8151393: Revert changes for JDK-8087104
darcy
parents: 36241
diff changeset
   686
        SoftReference<DateFormatSymbols> ref = cachedInstances.get(locale);
652d06266511 8151393: Revert changes for JDK-8087104
darcy
parents: 36241
diff changeset
   687
        DateFormatSymbols dfs;
652d06266511 8151393: Revert changes for JDK-8087104
darcy
parents: 36241
diff changeset
   688
        if (ref != null && (dfs = ref.get()) != null) {
652d06266511 8151393: Revert changes for JDK-8087104
darcy
parents: 36241
diff changeset
   689
            copyMembers(dfs, this);
7003
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   690
            return;
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   691
        }
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   692
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   693
        // Initialize the fields from the ResourceBundle for locale.
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   694
        LocaleProviderAdapter adapter = LocaleProviderAdapter.getAdapter(DateFormatSymbolsProvider.class, locale);
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   695
        // Avoid any potential recursions
15260
7af2d7a87806 7162007: Clean up i18n related caches
naoto
parents: 14765
diff changeset
   696
        if (!(adapter instanceof ResourceBundleBasedAdapter)) {
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   697
            adapter = LocaleProviderAdapter.getResourceBundleBased();
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   698
        }
15260
7af2d7a87806 7162007: Clean up i18n related caches
naoto
parents: 14765
diff changeset
   699
        ResourceBundle resource = ((ResourceBundleBasedAdapter)adapter).getLocaleData().getDateFormatData(locale);
7003
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   700
14765
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14172
diff changeset
   701
        // JRE and CLDR use different keys
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14172
diff changeset
   702
        // JRE: Eras, short.Eras and narrow.Eras
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14172
diff changeset
   703
        // CLDR: long.Eras, Eras and narrow.Eras
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14172
diff changeset
   704
        if (resource.containsKey("Eras")) {
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14172
diff changeset
   705
            eras = resource.getStringArray("Eras");
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14172
diff changeset
   706
        } else if (resource.containsKey("long.Eras")) {
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14172
diff changeset
   707
            eras = resource.getStringArray("long.Eras");
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14172
diff changeset
   708
        } else if (resource.containsKey("short.Eras")) {
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14172
diff changeset
   709
            eras = resource.getStringArray("short.Eras");
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14172
diff changeset
   710
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
        months = resource.getStringArray("MonthNames");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
        shortMonths = resource.getStringArray("MonthAbbreviations");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
        ampms = resource.getStringArray("AmPmMarkers");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
        localPatternChars = resource.getString("DateTimePatternChars");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
7003
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   716
        // 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
   717
        weekdays = toOneBasedArray(resource.getStringArray("DayNames"));
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   718
        shortWeekdays = toOneBasedArray(resource.getStringArray("DayAbbreviations"));
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   719
36253
652d06266511 8151393: Revert changes for JDK-8087104
darcy
parents: 36241
diff changeset
   720
        // Put a clone in the cache
652d06266511 8151393: Revert changes for JDK-8087104
darcy
parents: 36241
diff changeset
   721
        ref = new SoftReference<>((DateFormatSymbols)this.clone());
652d06266511 8151393: Revert changes for JDK-8087104
darcy
parents: 36241
diff changeset
   722
        SoftReference<DateFormatSymbols> x = cachedInstances.putIfAbsent(locale, ref);
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   723
        if (x != null) {
36253
652d06266511 8151393: Revert changes for JDK-8087104
darcy
parents: 36241
diff changeset
   724
            DateFormatSymbols y = x.get();
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   725
            if (y == null) {
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   726
                // Replace the empty SoftReference with ref.
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   727
                cachedInstances.put(locale, ref);
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   728
            }
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   729
        }
7003
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   730
    }
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   731
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   732
    private static String[] toOneBasedArray(String[] src) {
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   733
        int len = src.length;
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   734
        String[] dst = new String[len + 1];
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   735
        dst[0] = "";
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   736
        for (int i = 0; i < len; i++) {
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   737
            dst[i + 1] = src[i];
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   738
        }
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6497
diff changeset
   739
        return dst;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
     * Package private: used by SimpleDateFormat
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
     * Gets the index for the given time zone ID to obtain the time zone
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
     * strings for formatting. The time zone ID is just for programmatic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
     * lookup. NOT LOCALIZED!!!
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
     * @param ID the given time zone ID.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
     * @return the index of the given time zone ID.  Returns -1 if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
     * the given time zone ID can't be located in the DateFormatSymbols object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
     * @see java.util.SimpleTimeZone
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
     */
12549
db2c42dabfa4 7163865: Performance improvement for DateFormatSymbols.getZoneIndex(String)
youdwei
parents: 10419
diff changeset
   752
    final int getZoneIndex(String ID) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
        String[][] zoneStrings = getZoneStringsWrapper();
12549
db2c42dabfa4 7163865: Performance improvement for DateFormatSymbols.getZoneIndex(String)
youdwei
parents: 10419
diff changeset
   754
db2c42dabfa4 7163865: Performance improvement for DateFormatSymbols.getZoneIndex(String)
youdwei
parents: 10419
diff changeset
   755
        /*
db2c42dabfa4 7163865: Performance improvement for DateFormatSymbols.getZoneIndex(String)
youdwei
parents: 10419
diff changeset
   756
         * getZoneIndex has been re-written for performance reasons. instead of
db2c42dabfa4 7163865: Performance improvement for DateFormatSymbols.getZoneIndex(String)
youdwei
parents: 10419
diff changeset
   757
         * 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
   758
         * index
db2c42dabfa4 7163865: Performance improvement for DateFormatSymbols.getZoneIndex(String)
youdwei
parents: 10419
diff changeset
   759
         */
db2c42dabfa4 7163865: Performance improvement for DateFormatSymbols.getZoneIndex(String)
youdwei
parents: 10419
diff changeset
   760
        if (lastZoneIndex < zoneStrings.length && ID.equals(zoneStrings[lastZoneIndex][0])) {
db2c42dabfa4 7163865: Performance improvement for DateFormatSymbols.getZoneIndex(String)
youdwei
parents: 10419
diff changeset
   761
            return lastZoneIndex;
db2c42dabfa4 7163865: Performance improvement for DateFormatSymbols.getZoneIndex(String)
youdwei
parents: 10419
diff changeset
   762
        }
db2c42dabfa4 7163865: Performance improvement for DateFormatSymbols.getZoneIndex(String)
youdwei
parents: 10419
diff changeset
   763
db2c42dabfa4 7163865: Performance improvement for DateFormatSymbols.getZoneIndex(String)
youdwei
parents: 10419
diff changeset
   764
        /* slow path, search entire list */
db2c42dabfa4 7163865: Performance improvement for DateFormatSymbols.getZoneIndex(String)
youdwei
parents: 10419
diff changeset
   765
        for (int index = 0; index < zoneStrings.length; index++) {
db2c42dabfa4 7163865: Performance improvement for DateFormatSymbols.getZoneIndex(String)
youdwei
parents: 10419
diff changeset
   766
            if (ID.equals(zoneStrings[index][0])) {
db2c42dabfa4 7163865: Performance improvement for DateFormatSymbols.getZoneIndex(String)
youdwei
parents: 10419
diff changeset
   767
                lastZoneIndex = index;
db2c42dabfa4 7163865: Performance improvement for DateFormatSymbols.getZoneIndex(String)
youdwei
parents: 10419
diff changeset
   768
                return index;
db2c42dabfa4 7163865: Performance improvement for DateFormatSymbols.getZoneIndex(String)
youdwei
parents: 10419
diff changeset
   769
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
     * Wrapper method to the getZoneStrings(), which is called from inside
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
     * the java.text package and not to mutate the returned arrays, so that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
     * it does not need to create a defensive copy.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
    final String[][] getZoneStringsWrapper() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
        if (isSubclassObject()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
            return getZoneStrings();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
            return getZoneStringsImpl(false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   788
    private String[][] getZoneStringsImpl(boolean needsCopy) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
        if (zoneStrings == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
            zoneStrings = TimeZoneNameUtility.getZoneStrings(locale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
        if (!needsCopy) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
            return zoneStrings;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
        int len = zoneStrings.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
        String[][] aCopy = new String[len][];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
        for (int i = 0; i < len; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
            aCopy[i] = Arrays.copyOf(zoneStrings[i], zoneStrings[i].length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
        return aCopy;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12549
diff changeset
   805
    private boolean isSubclassObject() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
        return !getClass().getName().equals("java.text.DateFormatSymbols");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
     * Clones all the data members from the source DateFormatSymbols to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
     * the target DateFormatSymbols. This is only for subclasses.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
     * @param src the source DateFormatSymbols.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
     * @param dst the target DateFormatSymbols.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
     */
36253
652d06266511 8151393: Revert changes for JDK-8087104
darcy
parents: 36241
diff changeset
   815
    private void copyMembers(DateFormatSymbols src, DateFormatSymbols dst)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
        dst.eras = Arrays.copyOf(src.eras, src.eras.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
        dst.months = Arrays.copyOf(src.months, src.months.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
        dst.shortMonths = Arrays.copyOf(src.shortMonths, src.shortMonths.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
        dst.weekdays = Arrays.copyOf(src.weekdays, src.weekdays.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
        dst.shortWeekdays = Arrays.copyOf(src.shortWeekdays, src.shortWeekdays.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
        dst.ampms = Arrays.copyOf(src.ampms, src.ampms.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
        if (src.zoneStrings != null) {
36253
652d06266511 8151393: Revert changes for JDK-8087104
darcy
parents: 36241
diff changeset
   824
            dst.zoneStrings = src.getZoneStringsImpl(true);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
            dst.zoneStrings = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
        }
6491
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
   828
        dst.localPatternChars = src.localPatternChars;
14172
fad44417edf8 7200341: DateFormatSymbols.hashCode() throws ArrayIndexOutOfBoundsException in some circumstances
naoto
parents: 13583
diff changeset
   829
        dst.cachedHashCode = 0;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
     * Write out the default serializable data, after ensuring the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
     * <code>zoneStrings</code> field is initialized in order to make
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
     * sure the backward compatibility.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
    private void writeObject(ObjectOutputStream stream) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
        if (zoneStrings == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
            zoneStrings = TimeZoneNameUtility.getZoneStrings(locale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
        stream.defaultWriteObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
}