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