jdk/src/share/classes/java/util/TimeZone.java
author okutsu
Wed, 16 Feb 2011 16:51:21 +0900
changeset 8375 7b37813b7461
parent 7003 7d8d9506b4ee
child 8521 ab64b8d109b8
permissions -rw-r--r--
6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates Reviewed-by: peytoia
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
8375
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
     2
 * Copyright (c) 1996, 2011, 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.util;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
import java.io.Serializable;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
import java.lang.ref.SoftReference;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
import java.security.AccessController;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
import java.security.PrivilegedAction;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
import java.util.concurrent.ConcurrentHashMap;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
import sun.security.action.GetPropertyAction;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
import sun.util.TimeZoneNameUtility;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
import sun.util.calendar.ZoneInfo;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
import sun.util.calendar.ZoneInfoFile;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * <code>TimeZone</code> represents a time zone offset, and also figures out daylight
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * savings.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * Typically, you get a <code>TimeZone</code> using <code>getDefault</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * which creates a <code>TimeZone</code> based on the time zone where the program
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * is running. For example, for a program running in Japan, <code>getDefault</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * creates a <code>TimeZone</code> object based on Japanese Standard Time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * You can also get a <code>TimeZone</code> using <code>getTimeZone</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * along with a time zone ID. For instance, the time zone ID for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * U.S. Pacific Time zone is "America/Los_Angeles". So, you can get a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * U.S. Pacific Time <code>TimeZone</code> object with:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 * TimeZone tz = TimeZone.getTimeZone("America/Los_Angeles");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 * You can use the <code>getAvailableIDs</code> method to iterate through
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 * all the supported time zone IDs. You can then choose a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 * supported ID to get a <code>TimeZone</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 * If the time zone you want is not represented by one of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 * supported IDs, then a custom time zone ID can be specified to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 * produce a TimeZone. The syntax of a custom time zone ID is:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 * <a name="CustomID"><i>CustomID:</i></a>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 *         <code>GMT</code> <i>Sign</i> <i>Hours</i> <code>:</code> <i>Minutes</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 *         <code>GMT</code> <i>Sign</i> <i>Hours</i> <i>Minutes</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 *         <code>GMT</code> <i>Sign</i> <i>Hours</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 * <i>Sign:</i> one of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 *         <code>+ -</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 * <i>Hours:</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 *         <i>Digit</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 *         <i>Digit</i> <i>Digit</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
 * <i>Minutes:</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 *         <i>Digit</i> <i>Digit</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 * <i>Digit:</i> one of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
 *         <code>0 1 2 3 4 5 6 7 8 9</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
 * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
 * <i>Hours</i> must be between 0 to 23 and <i>Minutes</i> must be
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
 * between 00 to 59.  For example, "GMT+10" and "GMT+0010" mean ten
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
 * hours and ten minutes ahead of GMT, respectively.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
 * The format is locale independent and digits must be taken from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
 * Basic Latin block of the Unicode standard. No daylight saving time
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
 * transition schedule can be specified with a custom time zone ID. If
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
 * the specified string doesn't match the syntax, <code>"GMT"</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
 * is used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
 * When creating a <code>TimeZone</code>, the specified custom time
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
 * zone ID is normalized in the following syntax:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
 * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
 * <a name="NormalizedCustomID"><i>NormalizedCustomID:</i></a>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
 *         <code>GMT</code> <i>Sign</i> <i>TwoDigitHours</i> <code>:</code> <i>Minutes</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
 * <i>Sign:</i> one of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
 *         <code>+ -</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
 * <i>TwoDigitHours:</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
 *         <i>Digit</i> <i>Digit</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
 * <i>Minutes:</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
 *         <i>Digit</i> <i>Digit</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
 * <i>Digit:</i> one of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
 *         <code>0 1 2 3 4 5 6 7 8 9</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
 * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
 * For example, TimeZone.getTimeZone("GMT-8").getID() returns "GMT-08:00".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
 * <h4>Three-letter time zone IDs</h4>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
 * For compatibility with JDK 1.1.x, some other three-letter time zone IDs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
 * (such as "PST", "CTT", "AST") are also supported. However, <strong>their
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
 * use is deprecated</strong> because the same abbreviation is often used
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
 * for multiple time zones (for example, "CST" could be U.S. "Central Standard
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
 * Time" and "China Standard Time"), and the Java platform can then only
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
 * recognize one of them.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
 * @see          Calendar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
 * @see          GregorianCalendar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
 * @see          SimpleTimeZone
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
 * @author       Mark Davis, David Goldsmith, Chen-Lieh Huang, Alan Liu
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
 * @since        JDK1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
abstract public class TimeZone implements Serializable, Cloneable {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     * Sole constructor.  (For invocation by subclass constructors, typically
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     * implicit.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    public TimeZone() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     * A style specifier for <code>getDisplayName()</code> indicating
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     * a short name, such as "PST."
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     * @see #LONG
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
    public static final int SHORT = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     * A style specifier for <code>getDisplayName()</code> indicating
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     * a long name, such as "Pacific Standard Time."
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     * @see #SHORT
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    public static final int LONG  = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
    // Constants used internally; unit is milliseconds
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
    private static final int ONE_MINUTE = 60*1000;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
    private static final int ONE_HOUR   = 60*ONE_MINUTE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
    private static final int ONE_DAY    = 24*ONE_HOUR;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
    // Proclaim serialization compatibility with JDK 1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
    static final long serialVersionUID = 3581463369166924961L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     * Gets the time zone offset, for current date, modified in case of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     * daylight savings. This is the offset to add to UTC to get local time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     * This method returns a historically correct offset if an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     * underlying <code>TimeZone</code> implementation subclass
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     * supports historical Daylight Saving Time schedule and GMT
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     * offset changes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     * @param era the era of the given date.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     * @param year the year in the given date.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     * @param month the month in the given date.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     * Month is 0-based. e.g., 0 for January.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     * @param day the day-in-month of the given date.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     * @param dayOfWeek the day-of-week of the given date.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     * @param milliseconds the milliseconds in day in <em>standard</em>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
     * local time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
     * @return the offset in milliseconds to add to GMT to get local time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     * @see Calendar#ZONE_OFFSET
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
     * @see Calendar#DST_OFFSET
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
    public abstract int getOffset(int era, int year, int month, int day,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
                                  int dayOfWeek, int milliseconds);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
     * Returns the offset of this time zone from UTC at the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     * date. If Daylight Saving Time is in effect at the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
     * date, the offset value is adjusted with the amount of daylight
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
     * saving.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
     * This method returns a historically correct offset value if an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     * underlying TimeZone implementation subclass supports historical
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     * Daylight Saving Time schedule and GMT offset changes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     * @param date the date represented in milliseconds since January 1, 1970 00:00:00 GMT
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
     * @return the amount of time in milliseconds to add to UTC to get local time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
     * @see Calendar#ZONE_OFFSET
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
     * @see Calendar#DST_OFFSET
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
    public int getOffset(long date) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
        if (inDaylightTime(new Date(date))) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
            return getRawOffset() + getDSTSavings();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
        return getRawOffset();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
     * Gets the raw GMT offset and the amount of daylight saving of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
     * time zone at the given time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
     * @param date the milliseconds (since January 1, 1970,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     * 00:00:00.000 GMT) at which the time zone offset and daylight
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     * saving amount are found
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     * @param offset an array of int where the raw GMT offset
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
     * (offset[0]) and daylight saving amount (offset[1]) are stored,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
     * or null if those values are not needed. The method assumes that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     * the length of the given array is two or larger.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     * @return the total amount of the raw GMT offset and daylight
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     * saving at the specified date.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
     * @see Calendar#ZONE_OFFSET
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     * @see Calendar#DST_OFFSET
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
    int getOffsets(long date, int[] offsets) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
        int rawoffset = getRawOffset();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
        int dstoffset = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
        if (inDaylightTime(new Date(date))) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
            dstoffset = getDSTSavings();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
        if (offsets != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
            offsets[0] = rawoffset;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
            offsets[1] = dstoffset;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
        return rawoffset + dstoffset;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
     * Sets the base time zone offset to GMT.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
     * This is the offset to add to UTC to get local time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
     * If an underlying <code>TimeZone</code> implementation subclass
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
     * supports historical GMT offset changes, the specified GMT
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
     * offset is set as the latest GMT offset and the difference from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
     * the known latest GMT offset value is used to adjust all
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
     * historical GMT offset values.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
     * @param offsetMillis the given base time zone offset to GMT.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
    abstract public void setRawOffset(int offsetMillis);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
     * Returns the amount of time in milliseconds to add to UTC to get
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
     * standard time in this time zone. Because this value is not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
     * affected by daylight saving time, it is called <I>raw
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
     * offset</I>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
     * If an underlying <code>TimeZone</code> implementation subclass
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
     * supports historical GMT offset changes, the method returns the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
     * raw offset value of the current date. In Honolulu, for example,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
     * its raw offset changed from GMT-10:30 to GMT-10:00 in 1947, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
     * this method always returns -36000000 milliseconds (i.e., -10
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
     * hours).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
     * @return the amount of raw offset time in milliseconds to add to UTC.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     * @see Calendar#ZONE_OFFSET
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
    public abstract int getRawOffset();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
     * Gets the ID of this time zone.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
     * @return the ID of this time zone.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
    public String getID()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
        return ID;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
     * Sets the time zone ID. This does not change any other data in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
     * the time zone object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
     * @param ID the new time zone ID.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
    public void setID(String ID)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
        if (ID == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
            throw new NullPointerException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
        this.ID = ID;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
    /**
6841
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   300
     * Returns a long standard time name of this {@code TimeZone} suitable for
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   301
     * presentation to the user in the default locale.
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   302
     *
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   303
     * <p>This method is equivalent to:
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   304
     * <pre><blockquote>
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   305
     * getDisplayName(false, {@link #LONG},
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   306
     *                Locale.getDefault({@link Locale.Category#DISPLAY}))
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   307
     * </blockquote></pre>
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   308
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
     * @return the human-readable name of this time zone in the default locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
     * @since 1.2
6841
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   311
     * @see #getDisplayName(boolean, int, Locale)
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   312
     * @see Locale#getDefault(Locale.Category)
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   313
     * @see Locale.Category
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
    public final String getDisplayName() {
6841
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   316
        return getDisplayName(false, LONG,
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   317
                              Locale.getDefault(Locale.Category.DISPLAY));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
    /**
6841
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   321
     * Returns a long standard time name of this {@code TimeZone} suitable for
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   322
     * presentation to the user in the specified {@code locale}.
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   323
     *
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   324
     * <p>This method is equivalent to:
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   325
     * <pre><blockquote>
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   326
     * getDisplayName(false, {@link #LONG}, locale)
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   327
     * </blockquote></pre>
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   328
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
     * @param locale the locale in which to supply the display name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
     * @return the human-readable name of this time zone in the given locale.
6841
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   331
     * @exception NullPointerException if {@code locale} is {@code null}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     * @since 1.2
6841
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   333
     * @see #getDisplayName(boolean, int, Locale)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
    public final String getDisplayName(Locale locale) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
        return getDisplayName(false, LONG, locale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
    /**
6841
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   340
     * Returns a name in the specified {@code style} of this {@code TimeZone}
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   341
     * suitable for presentation to the user in the default locale. If the
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   342
     * specified {@code daylight} is {@code true}, a daylight saving time name
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   343
     * is returned. Otherwise, a standard time name is returned.
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   344
     *
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   345
     * <p>This method is equivalent to:
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   346
     * <pre><blockquote>
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   347
     * getDisplayName(daylight, style,
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   348
     *                Locale.getDefault({@link Locale.Category#DISPLAY}))
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   349
     * </blockquote></pre>
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   350
     *
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   351
     * @param daylight if {@code true}, return the daylight saving time name.
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   352
     * @param style either {@link #LONG} or {@link #SHORT}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
     * @return the human-readable name of this time zone in the default locale.
6841
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   354
     * @exception IllegalArgumentException if {@code style} is invalid.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
     * @since 1.2
6841
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   356
     * @see #getDisplayName(boolean, int, Locale)
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   357
     * @see Locale#getDefault(Locale.Category)
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   358
     * @see Locale.Category
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
    public final String getDisplayName(boolean daylight, int style) {
6841
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   361
        return getDisplayName(daylight, style,
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   362
                              Locale.getDefault(Locale.Category.DISPLAY));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
    /**
6841
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   366
     * Returns a name in the specified {@code style} of this {@code TimeZone}
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   367
     * suitable for presentation to the user in the specified {@code
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   368
     * locale}. If the specified {@code daylight} is {@code true}, a daylight
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   369
     * saving time name is returned. Otherwise, a standard time name is
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   370
     * returned.
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   371
     *
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   372
     * <p>When looking up a time zone name, the {@linkplain
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   373
     * ResourceBundle.Control#getCandidateLocales(String,Locale) default
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   374
     * <code>Locale</code> search path of <code>ResourceBundle</code>} derived
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   375
     * from the specified {@code locale} is used. (No {@linkplain
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   376
     * ResourceBundle.Control#getFallbackLocale(String,Locale) fallback
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   377
     * <code>Locale</code>} search is performed.) If a time zone name in any
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   378
     * {@code Locale} of the search path, including {@link Locale#ROOT}, is
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   379
     * found, the name is returned. Otherwise, a string in the
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   380
     * <a href="#NormalizedCustomID">normalized custom ID format</a> is returned.
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   381
     *
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   382
     * @param daylight if {@code true}, return the daylight saving time name.
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   383
     * @param style either {@link #LONG} or {@link #SHORT}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
     * @param locale the locale in which to supply the display name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
     * @return the human-readable name of this time zone in the given locale.
6841
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   386
     * @exception IllegalArgumentException if {@code style} is invalid.
3a4f3e399917 6638110: (tz) TimeZone.getDisplayName(...) spec is inconsistent with implementation for unavailable locales
okutsu
parents: 6489
diff changeset
   387
     * @exception NullPointerException if {@code locale} is {@code null}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
     * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
    public String getDisplayName(boolean daylight, int style, Locale locale) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
        if (style != SHORT && style != LONG) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
            throw new IllegalArgumentException("Illegal style: " + style);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
        String id = getID();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
        String[] names = getDisplayNames(id, locale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
        if (names == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
            if (id.startsWith("GMT")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
                char sign = id.charAt(3);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
                if (sign == '+' || sign == '-') {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
                    return id;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
            int offset = getRawOffset();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
            if (daylight) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
                offset += getDSTSavings();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
            return ZoneInfoFile.toCustomID(offset);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
        int index = daylight ? 3 : 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
        if (style == SHORT) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
            index++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
        return names[index];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
    private static class DisplayNames {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
        // Cache for managing display names per timezone per locale
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
        // The structure is:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
        //   Map(key=id, value=SoftReference(Map(key=locale, value=displaynames)))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
        private static final Map<String, SoftReference<Map<Locale, String[]>>> CACHE =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
            new ConcurrentHashMap<String, SoftReference<Map<Locale, String[]>>>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
    private static final String[] getDisplayNames(String id, Locale locale) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
        Map<String, SoftReference<Map<Locale, String[]>>> displayNames = DisplayNames.CACHE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
        SoftReference<Map<Locale, String[]>> ref = displayNames.get(id);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
        if (ref != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
            Map<Locale, String[]> perLocale = ref.get();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
            if (perLocale != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
                String[] names = perLocale.get(locale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
                if (names != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
                    return names;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
                names = TimeZoneNameUtility.retrieveDisplayNames(id, locale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
                if (names != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
                    perLocale.put(locale, names);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
                return names;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
        String[] names = TimeZoneNameUtility.retrieveDisplayNames(id, locale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
        if (names != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
            Map<Locale, String[]> perLocale = new ConcurrentHashMap<Locale, String[]>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
            perLocale.put(locale, names);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
            ref = new SoftReference<Map<Locale, String[]>>(perLocale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
            displayNames.put(id, ref);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
        return names;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
     * Returns the amount of time to be added to local standard time
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
     * to get local wall clock time.
8375
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   458
     *
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   459
     * <p>The default implementation returns 3600000 milliseconds
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   460
     * (i.e., one hour) if a call to {@link #useDaylightTime()}
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   461
     * returns {@code true}. Otherwise, 0 (zero) is returned.
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   462
     *
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   463
     * <p>If an underlying {@code TimeZone} implementation subclass
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   464
     * supports historical and future Daylight Saving Time schedule
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   465
     * changes, this method returns the amount of saving time of the
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   466
     * last known Daylight Saving Time rule that can be a future
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   467
     * prediction.
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   468
     *
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   469
     * <p>If the amount of saving time at any given time stamp is
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   470
     * required, construct a {@link Calendar} with this {@code
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   471
     * TimeZone} and the time stamp, and call {@link Calendar#get(int)
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   472
     * Calendar.get}{@code (}{@link Calendar#DST_OFFSET}{@code )}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
     * @return the amount of saving time in milliseconds
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
     * @since 1.4
8375
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   476
     * @see #inDaylightTime(Date)
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   477
     * @see #getOffset(long)
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   478
     * @see #getOffset(int,int,int,int,int,int)
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   479
     * @see Calendar#ZONE_OFFSET
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
    public int getDSTSavings() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
        if (useDaylightTime()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
            return 3600000;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
        return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
    /**
8375
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   489
     * Queries if this {@code TimeZone} uses Daylight Saving Time.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
     *
8375
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   491
     * <p>If an underlying {@code TimeZone} implementation subclass
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   492
     * supports historical and future Daylight Saving Time schedule
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   493
     * changes, this method refers to the last known Daylight Saving Time
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   494
     * rule that can be a future prediction and may not be the same as
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   495
     * the current rule. Consider calling {@link #observesDaylightTime()}
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   496
     * if the current rule should also be taken into account.
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   497
     *
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   498
     * @return {@code true} if this {@code TimeZone} uses Daylight Saving Time,
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   499
     *         {@code false}, otherwise.
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   500
     * @see #inDaylightTime(Date)
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   501
     * @see Calendar#DST_OFFSET
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
    public abstract boolean useDaylightTime();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
    /**
8375
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   506
     * Returns {@code true} if this {@code TimeZone} is currently in
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   507
     * Daylight Saving Time, or if a transition from Standard Time to
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   508
     * Daylight Saving Time occurs at any future time.
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   509
     *
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   510
     * <p>The default implementation returns {@code true} if
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   511
     * {@code useDaylightTime()} or {@code inDaylightTime(new Date())}
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   512
     * returns {@code true}.
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   513
     *
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   514
     * @return {@code true} if this {@code TimeZone} is currently in
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   515
     * Daylight Saving Time, or if a transition from Standard Time to
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   516
     * Daylight Saving Time occurs at any future time; {@code false}
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   517
     * otherwise.
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   518
     * @since 1.7
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   519
     * @see #useDaylightTime()
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   520
     * @see #inDaylightTime(Date)
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   521
     * @see Calendar#DST_OFFSET
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   522
     */
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   523
    public boolean observesDaylightTime() {
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   524
        return useDaylightTime() || inDaylightTime(new Date());
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   525
    }
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   526
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   527
    /**
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   528
     * Queries if the given {@code date} is in Daylight Saving Time in
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   529
     * this {@code TimeZone}.
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   530
     *
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   531
     * @param date the given {@code Date}.
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   532
     * @return {@code true} if the given {@code date} is in Daylight Saving Time,
7b37813b7461 6936350: API clarification needed on useDaylightTime() for timezones that have defined usage dates
okutsu
parents: 7003
diff changeset
   533
     *         {@code false}, otherwise.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
    abstract public boolean inDaylightTime(Date date);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
     * Gets the <code>TimeZone</code> for the given ID.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
     * @param ID the ID for a <code>TimeZone</code>, either an abbreviation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
     * such as "PST", a full name such as "America/Los_Angeles", or a custom
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
     * ID such as "GMT-8:00". Note that the support of abbreviations is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
     * for JDK 1.1.x compatibility only and full names should be used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
     * @return the specified <code>TimeZone</code>, or the GMT zone if the given ID
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
     * cannot be understood.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
    public static synchronized TimeZone getTimeZone(String ID) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
        return getTimeZone(ID, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
    private static TimeZone getTimeZone(String ID, boolean fallback) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
        TimeZone tz = ZoneInfo.getTimeZone(ID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
        if (tz == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
            tz = parseCustomTimeZone(ID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
            if (tz == null && fallback) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
                tz = new ZoneInfo(GMT_ID, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
        return tz;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
     * Gets the available IDs according to the given time zone offset in milliseconds.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
     * @param rawOffset the given time zone GMT offset in milliseconds.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
     * @return an array of IDs, where the time zone for that ID has
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
     * the specified GMT offset. For example, "America/Phoenix" and "America/Denver"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
     * both have GMT-07:00, but differ in daylight savings behavior.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
     * @see #getRawOffset()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
    public static synchronized String[] getAvailableIDs(int rawOffset) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
        return ZoneInfo.getAvailableIDs(rawOffset);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
     * Gets all the available IDs supported.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
     * @return an array of IDs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
    public static synchronized String[] getAvailableIDs() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
        return ZoneInfo.getAvailableIDs();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
     * Gets the platform defined TimeZone ID.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
     **/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
    private static native String getSystemTimeZoneID(String javaHome,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
                                                     String country);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
     * Gets the custom time zone ID based on the GMT offset of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
     * platform. (e.g., "GMT+08:00")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
    private static native String getSystemGMTOffsetID();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
     * Gets the default <code>TimeZone</code> for this host.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
     * The source of the default <code>TimeZone</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
     * may vary with implementation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
     * @return a default <code>TimeZone</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
     * @see #setDefault
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
    public static TimeZone getDefault() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
        return (TimeZone) getDefaultRef().clone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
     * Returns the reference to the default TimeZone object. This
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
     * method doesn't create a clone.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
    static TimeZone getDefaultRef() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
        TimeZone defaultZone = defaultZoneTL.get();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
        if (defaultZone == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
            defaultZone = defaultTimeZone;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
            if (defaultZone == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
                // Need to initialize the default time zone.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
                defaultZone = setDefaultZone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
                assert defaultZone != null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
        // Don't clone here.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
        return defaultZone;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
    private static synchronized TimeZone setDefaultZone() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
        TimeZone tz = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
        // get the time zone ID from the system properties
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
        String zoneID = AccessController.doPrivileged(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
                new GetPropertyAction("user.timezone"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
        // if the time zone ID is not set (yet), perform the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
        // platform to Java time zone ID mapping.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
        if (zoneID == null || zoneID.equals("")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
            String country = AccessController.doPrivileged(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
                    new GetPropertyAction("user.country"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
            String javaHome = AccessController.doPrivileged(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
                    new GetPropertyAction("java.home"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
                zoneID = getSystemTimeZoneID(javaHome, country);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
                if (zoneID == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
                    zoneID = GMT_ID;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
            } catch (NullPointerException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
                zoneID = GMT_ID;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
        // Get the time zone for zoneID. But not fall back to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
        // "GMT" here.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
        tz = getTimeZone(zoneID, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
        if (tz == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
            // If the given zone ID is unknown in Java, try to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
            // get the GMT-offset-based time zone ID,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
            // a.k.a. custom time zone ID (e.g., "GMT-08:00").
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
            String gmtOffsetID = getSystemGMTOffsetID();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
            if (gmtOffsetID != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
                zoneID = gmtOffsetID;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
            tz = getTimeZone(zoneID, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
        assert tz != null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
        final String id = zoneID;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
        AccessController.doPrivileged(new PrivilegedAction<Object>() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
                public Object run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
                    System.setProperty("user.timezone", id);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
                    return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
            });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
        defaultTimeZone = tz;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
        return tz;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
    private static boolean hasPermission() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
        boolean hasPermission = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
        SecurityManager sm = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
        if (sm != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
                sm.checkPermission(new PropertyPermission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
                                   ("user.timezone", "write"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
            } catch (SecurityException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
                hasPermission = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
        return hasPermission;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
     * Sets the <code>TimeZone</code> that is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
     * returned by the <code>getDefault</code> method.  If <code>zone</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
     * is null, reset the default to the value it had originally when the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
     * VM first started.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
     * @param zone the new default time zone
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
     * @see #getDefault
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
    public static void setDefault(TimeZone zone)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
        if (hasPermission()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
            synchronized (TimeZone.class) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
                defaultTimeZone = zone;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
                defaultZoneTL.set(null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
            defaultZoneTL.set(zone);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
     * Returns true if this zone has the same rule and offset as another zone.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
     * That is, if this zone differs only in ID, if at all.  Returns false
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
     * if the other zone is null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
     * @param other the <code>TimeZone</code> object to be compared with
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
     * @return true if the other zone is not null and is the same as this one,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
     * with the possible exception of the ID
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
     * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
    public boolean hasSameRules(TimeZone other) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
        return other != null && getRawOffset() == other.getRawOffset() &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
            useDaylightTime() == other.useDaylightTime();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
     * Creates a copy of this <code>TimeZone</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
     * @return a clone of this <code>TimeZone</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
    public Object clone()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
            TimeZone other = (TimeZone) super.clone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
            other.ID = ID;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
            return other;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
        } catch (CloneNotSupportedException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
            throw new InternalError();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
     * The null constant as a TimeZone.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
    static final TimeZone NO_TIMEZONE = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
    // =======================privates===============================
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
     * The string identifier of this <code>TimeZone</code>.  This is a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
     * programmatic identifier used internally to look up <code>TimeZone</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
     * objects from the system table and also to map them to their localized
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
     * display names.  <code>ID</code> values are unique in the system
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
     * table but may not be for dynamically created zones.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
    private String           ID;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
    private static volatile TimeZone defaultTimeZone;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
    private static final InheritableThreadLocal<TimeZone> defaultZoneTL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
                                        = new InheritableThreadLocal<TimeZone>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
    static final String         GMT_ID        = "GMT";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
    private static final int    GMT_ID_LENGTH = 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
     * Parses a custom time zone identifier and returns a corresponding zone.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
     * This method doesn't support the RFC 822 time zone format. (e.g., +hhmm)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
     * @param id a string of the <a href="#CustomID">custom ID form</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
     * @return a newly created TimeZone with the given offset and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
     * no daylight saving time, or null if the id cannot be parsed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
    private static final TimeZone parseCustomTimeZone(String id) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
        int length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
        // Error if the length of id isn't long enough or id doesn't
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
        // start with "GMT".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
        if ((length = id.length()) < (GMT_ID_LENGTH + 2) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
            id.indexOf(GMT_ID) != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
        ZoneInfo zi;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
        // First, we try to find it in the cache with the given
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
        // id. Even the id is not normalized, the returned ZoneInfo
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
        // should have its normalized id.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
        zi = ZoneInfoFile.getZoneInfo(id);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
        if (zi != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
            return zi;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
        int index = GMT_ID_LENGTH;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
        boolean negative = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
        char c = id.charAt(index++);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
        if (c == '-') {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
            negative = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
        } else if (c != '+') {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
        int hours = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
        int num = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
        int countDelim = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
        int len = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
        while (index < length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
            c = id.charAt(index++);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
            if (c == ':') {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
                if (countDelim > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
                    return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
                if (len > 2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
                    return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
                hours = num;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
                countDelim++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
                num = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
                len = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
                continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
            if (c < '0' || c > '9') {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
            num = num * 10 + (c - '0');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
            len++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
        if (index != length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
        if (countDelim == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
            if (len <= 2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
                hours = num;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
                num = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
                hours = num / 100;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
                num %= 100;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
            if (len != 2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
        if (hours > 23 || num > 59) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
        int gmtOffset =  (hours * 60 + num) * 60 * 1000;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
        if (gmtOffset == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
            zi = ZoneInfoFile.getZoneInfo(GMT_ID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
            if (negative) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
                zi.setID("GMT-00:00");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
                zi.setID("GMT+00:00");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
            zi = ZoneInfoFile.getCustomTimeZone(id, negative ? -gmtOffset : gmtOffset);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
        return zi;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
}