jdk/src/share/classes/java/util/Calendar.java
author okutsu
Wed, 01 Sep 2010 15:19:13 +0900
changeset 6491 cd1bcc5057f4
parent 6489 9e7015635425
child 6501 684810d882b3
permissions -rw-r--r--
4267450: (cal) API: Need public API to calculate, format and parse "year of week" 6549953: (cal) WEEK_OF_YEAR and DAY_OF_YEAR calculation problems around Gregorian cutover Reviewed-by: peytoia
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
6491
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
     2
 * Copyright (c) 1996, 2010, 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: 2624
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: 2624
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: 2624
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2624
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2624
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-1998 - All Rights Reserved
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 * (C) Copyright IBM Corp. 1996-1998 - 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.IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
import java.io.ObjectInputStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
import java.io.ObjectOutputStream;
2599
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
    44
import java.io.OptionalDataException;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
import java.io.Serializable;
2599
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
    46
import java.security.AccessControlContext;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
import java.security.AccessController;
2599
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
    48
import java.security.PermissionCollection;
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
    49
import java.security.PrivilegedActionException;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
import java.security.PrivilegedExceptionAction;
2599
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
    51
import java.security.ProtectionDomain;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
import java.text.DateFormat;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
import java.text.DateFormatSymbols;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
import sun.util.BuddhistCalendar;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
import sun.util.calendar.ZoneInfo;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
import sun.util.resources.LocaleData;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * The <code>Calendar</code> class is an abstract class that provides methods
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * for converting between a specific instant in time and a set of {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 * #fields calendar fields} such as <code>YEAR</code>, <code>MONTH</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * <code>DAY_OF_MONTH</code>, <code>HOUR</code>, and so on, and for
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * manipulating the calendar fields, such as getting the date of the next
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * week. An instant in time can be represented by a millisecond value that is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * an offset from the <a name="Epoch"><em>Epoch</em></a>, January 1, 1970
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * 00:00:00.000 GMT (Gregorian).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 * <p>The class also provides additional fields and methods for
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 * implementing a concrete calendar system outside the package. Those
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 * fields and methods are defined as <code>protected</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 * Like other locale-sensitive classes, <code>Calendar</code> provides a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 * class method, <code>getInstance</code>, for getting a generally useful
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 * object of this type. <code>Calendar</code>'s <code>getInstance</code> method
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 * returns a <code>Calendar</code> object whose
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 * calendar fields have been initialized with the current date and time:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 * <blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 *     Calendar rightNow = Calendar.getInstance();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 * </blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 * <p>A <code>Calendar</code> object can produce all the calendar field values
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 * needed to implement the date-time formatting for a particular language and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
 * calendar style (for example, Japanese-Gregorian, Japanese-Traditional).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 * <code>Calendar</code> defines the range of values returned by
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 * certain calendar fields, as well as their meaning.  For example,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
 * the first month of the calendar system has value <code>MONTH ==
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
 * JANUARY</code> for all calendars.  Other values are defined by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
 * concrete subclass, such as <code>ERA</code>.  See individual field
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
 * documentation and subclass documentation for details.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
 * <h4>Getting and Setting Calendar Field Values</h4>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
 * <p>The calendar field values can be set by calling the <code>set</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
 * methods. Any field values set in a <code>Calendar</code> will not be
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
 * interpreted until it needs to calculate its time value (milliseconds from
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
 * the Epoch) or values of the calendar fields. Calling the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
 * <code>get</code>, <code>getTimeInMillis</code>, <code>getTime</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
 * <code>add</code> and <code>roll</code> involves such calculation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
 * <h4>Leniency</h4>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
 * <p><code>Calendar</code> has two modes for interpreting the calendar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
 * fields, <em>lenient</em> and <em>non-lenient</em>.  When a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
 * <code>Calendar</code> is in lenient mode, it accepts a wider range of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
 * calendar field values than it produces.  When a <code>Calendar</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
 * recomputes calendar field values for return by <code>get()</code>, all of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
 * the calendar fields are normalized. For example, a lenient
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
 * <code>GregorianCalendar</code> interprets <code>MONTH == JANUARY</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
 * <code>DAY_OF_MONTH == 32</code> as February 1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
 * <p>When a <code>Calendar</code> is in non-lenient mode, it throws an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
 * exception if there is any inconsistency in its calendar fields. For
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
 * example, a <code>GregorianCalendar</code> always produces
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
 * <code>DAY_OF_MONTH</code> values between 1 and the length of the month. A
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
 * non-lenient <code>GregorianCalendar</code> throws an exception upon
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
 * calculating its time or calendar field values if any out-of-range field
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
 * value has been set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
 *
6491
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
   122
 * <h4><a name="first_week">First Week</a></h4>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
 * <code>Calendar</code> defines a locale-specific seven day week using two
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
 * parameters: the first day of the week and the minimal days in first week
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
 * (from 1 to 7).  These numbers are taken from the locale resource data when a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
 * <code>Calendar</code> is constructed.  They may also be specified explicitly
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
 * through the methods for setting their values.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
 * <p>When setting or getting the <code>WEEK_OF_MONTH</code> or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
 * <code>WEEK_OF_YEAR</code> fields, <code>Calendar</code> must determine the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
 * first week of the month or year as a reference point.  The first week of a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
 * month or year is defined as the earliest seven day period beginning on
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
 * <code>getFirstDayOfWeek()</code> and containing at least
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
 * <code>getMinimalDaysInFirstWeek()</code> days of that month or year.  Weeks
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
 * numbered ..., -1, 0 precede the first week; weeks numbered 2, 3,... follow
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
 * it.  Note that the normalized numbering returned by <code>get()</code> may be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
 * different.  For example, a specific <code>Calendar</code> subclass may
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
 * designate the week before week 1 of a year as week <code><i>n</i></code> of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
 * the previous year.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
 * <h4>Calendar Fields Resolution</h4>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
 * When computing a date and time from the calendar fields, there
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
 * may be insufficient information for the computation (such as only
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
 * year and month with no day of month), or there may be inconsistent
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
 * information (such as Tuesday, July 15, 1996 (Gregorian) -- July 15,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
 * 1996 is actually a Monday). <code>Calendar</code> will resolve
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
 * calendar field values to determine the date and time in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
 * following way.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
 * <p>If there is any conflict in calendar field values,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
 * <code>Calendar</code> gives priorities to calendar fields that have been set
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
 * more recently. The following are the default combinations of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
 * calendar fields. The most recent combination, as determined by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
 * most recently set single field, will be used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
 * <p><a name="date_resolution">For the date fields</a>:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
 * <blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
 * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
 * YEAR + MONTH + DAY_OF_MONTH
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
 * YEAR + MONTH + WEEK_OF_MONTH + DAY_OF_WEEK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
 * YEAR + MONTH + DAY_OF_WEEK_IN_MONTH + DAY_OF_WEEK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
 * YEAR + DAY_OF_YEAR
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
 * YEAR + DAY_OF_WEEK + WEEK_OF_YEAR
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
 * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
 * <a name="time_resolution">For the time of day fields</a>:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
 * <blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
 * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
 * HOUR_OF_DAY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
 * AM_PM + HOUR
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
 * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
 * <p>If there are any calendar fields whose values haven't been set in the selected
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
 * field combination, <code>Calendar</code> uses their default values. The default
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
 * value of each field may vary by concrete calendar systems. For example, in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
 * <code>GregorianCalendar</code>, the default of a field is the same as that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
 * of the start of the Epoch: i.e., <code>YEAR = 1970</code>, <code>MONTH =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
 * JANUARY</code>, <code>DAY_OF_MONTH = 1</code>, etc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
 * <strong>Note:</strong> There are certain possible ambiguities in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
 * interpretation of certain singular times, which are resolved in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
 * following ways:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
 * <ol>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
 *     <li> 23:59 is the last minute of the day and 00:00 is the first
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
 *          minute of the next day. Thus, 23:59 on Dec 31, 1999 &lt; 00:00 on
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
 *          Jan 1, 2000 &lt; 00:01 on Jan 1, 2000.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
 *     <li> Although historically not precise, midnight also belongs to "am",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
 *          and noon belongs to "pm", so on the same day,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
 *          12:00 am (midnight) &lt; 12:01 am, and 12:00 pm (noon) &lt; 12:01 pm
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
 * </ol>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
 * The date or time format strings are not part of the definition of a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
 * calendar, as those must be modifiable or overridable by the user at
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
 * runtime. Use {@link DateFormat}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
 * to format dates.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
 * <h4>Field Manipulation</h4>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
 * The calendar fields can be changed using three methods:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
 * <code>set()</code>, <code>add()</code>, and <code>roll()</code>.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
 * <p><strong><code>set(f, value)</code></strong> changes calendar field
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
 * <code>f</code> to <code>value</code>.  In addition, it sets an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
 * internal member variable to indicate that calendar field <code>f</code> has
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
 * been changed. Although calendar field <code>f</code> is changed immediately,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
 * the calendar's time value in milliseconds is not recomputed until the next call to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
 * <code>get()</code>, <code>getTime()</code>, <code>getTimeInMillis()</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
 * <code>add()</code>, or <code>roll()</code> is made. Thus, multiple calls to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
 * <code>set()</code> do not trigger multiple, unnecessary
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
 * computations. As a result of changing a calendar field using
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
 * <code>set()</code>, other calendar fields may also change, depending on the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
 * calendar field, the calendar field value, and the calendar system. In addition,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
 * <code>get(f)</code> will not necessarily return <code>value</code> set by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
 * the call to the <code>set</code> method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
 * after the calendar fields have been recomputed. The specifics are determined by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
 * the concrete calendar class.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
 * <p><em>Example</em>: Consider a <code>GregorianCalendar</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
 * originally set to August 31, 1999. Calling <code>set(Calendar.MONTH,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
 * Calendar.SEPTEMBER)</code> sets the date to September 31,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
 * 1999. This is a temporary internal representation that resolves to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
 * October 1, 1999 if <code>getTime()</code>is then called. However, a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
 * call to <code>set(Calendar.DAY_OF_MONTH, 30)</code> before the call to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
 * <code>getTime()</code> sets the date to September 30, 1999, since
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
 * no recomputation occurs after <code>set()</code> itself.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
 * <p><strong><code>add(f, delta)</code></strong> adds <code>delta</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
 * to field <code>f</code>.  This is equivalent to calling <code>set(f,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
 * get(f) + delta)</code> with two adjustments:</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
 * <blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
 *   <p><strong>Add rule 1</strong>. The value of field <code>f</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
 *   after the call minus the value of field <code>f</code> before the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
 *   call is <code>delta</code>, modulo any overflow that has occurred in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
 *   field <code>f</code>. Overflow occurs when a field value exceeds its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
 *   range and, as a result, the next larger field is incremented or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
 *   decremented and the field value is adjusted back into its range.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
 *   <p><strong>Add rule 2</strong>. If a smaller field is expected to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
 *   invariant, but it is impossible for it to be equal to its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
 *   prior value because of changes in its minimum or maximum after field
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
 *   <code>f</code> is changed or other constraints, such as time zone
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
 *   offset changes, then its value is adjusted to be as close
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
 *   as possible to its expected value. A smaller field represents a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
 *   smaller unit of time. <code>HOUR</code> is a smaller field than
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
 *   <code>DAY_OF_MONTH</code>. No adjustment is made to smaller fields
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
 *   that are not expected to be invariant. The calendar system
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
 *   determines what fields are expected to be invariant.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
 * </blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
 * <p>In addition, unlike <code>set()</code>, <code>add()</code> forces
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
 * an immediate recomputation of the calendar's milliseconds and all
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
 * fields.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
 * <p><em>Example</em>: Consider a <code>GregorianCalendar</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
 * originally set to August 31, 1999. Calling <code>add(Calendar.MONTH,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
 * 13)</code> sets the calendar to September 30, 2000. <strong>Add rule
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
 * 1</strong> sets the <code>MONTH</code> field to September, since
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
 * adding 13 months to August gives September of the next year. Since
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
 * <code>DAY_OF_MONTH</code> cannot be 31 in September in a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
 * <code>GregorianCalendar</code>, <strong>add rule 2</strong> sets the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
 * <code>DAY_OF_MONTH</code> to 30, the closest possible value. Although
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
 * it is a smaller field, <code>DAY_OF_WEEK</code> is not adjusted by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
 * rule 2, since it is expected to change when the month changes in a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
 * <code>GregorianCalendar</code>.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
 * <p><strong><code>roll(f, delta)</code></strong> adds
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
 * <code>delta</code> to field <code>f</code> without changing larger
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
 * fields. This is equivalent to calling <code>add(f, delta)</code> with
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
 * the following adjustment:</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
 * <blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
 *   <p><strong>Roll rule</strong>. Larger fields are unchanged after the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
 *   call. A larger field represents a larger unit of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
 *   time. <code>DAY_OF_MONTH</code> is a larger field than
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
 *   <code>HOUR</code>.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
 * </blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
 * <p><em>Example</em>: See {@link java.util.GregorianCalendar#roll(int, int)}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
 * <p><strong>Usage model</strong>. To motivate the behavior of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
 * <code>add()</code> and <code>roll()</code>, consider a user interface
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
 * component with increment and decrement buttons for the month, day, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
 * year, and an underlying <code>GregorianCalendar</code>. If the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
 * interface reads January 31, 1999 and the user presses the month
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
 * increment button, what should it read? If the underlying
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
 * implementation uses <code>set()</code>, it might read March 3, 1999. A
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
 * better result would be February 28, 1999. Furthermore, if the user
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
 * presses the month increment button again, it should read March 31,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
 * 1999, not March 28, 1999. By saving the original date and using either
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
 * <code>add()</code> or <code>roll()</code>, depending on whether larger
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
 * fields should be affected, the user interface can behave as most users
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
 * will intuitively expect.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
 * @see          java.lang.System#currentTimeMillis()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
 * @see          Date
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
 * @see          GregorianCalendar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
 * @see          TimeZone
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
 * @see          java.text.DateFormat
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
 * @author Mark Davis, David Goldsmith, Chen-Lieh Huang, Alan Liu
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
 * @since JDK1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
public abstract class Calendar implements Serializable, Cloneable, Comparable<Calendar> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
    // Data flow in Calendar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
    // ---------------------
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
    // The current time is represented in two ways by Calendar: as UTC
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
    // milliseconds from the epoch (1 January 1970 0:00 UTC), and as local
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
    // fields such as MONTH, HOUR, AM_PM, etc.  It is possible to compute the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
    // millis from the fields, and vice versa.  The data needed to do this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
    // conversion is encapsulated by a TimeZone object owned by the Calendar.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
    // The data provided by the TimeZone object may also be overridden if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
    // user sets the ZONE_OFFSET and/or DST_OFFSET fields directly. The class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
    // keeps track of what information was most recently set by the caller, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
    // uses that to compute any other information as needed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
    // If the user sets the fields using set(), the data flow is as follows.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
    // This is implemented by the Calendar subclass's computeTime() method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
    // During this process, certain fields may be ignored.  The disambiguation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
    // algorithm for resolving which fields to pay attention to is described
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
    // in the class documentation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
    //   local fields (YEAR, MONTH, DATE, HOUR, MINUTE, etc.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
    //           |
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
    //           | Using Calendar-specific algorithm
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
    //           V
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
    //   local standard millis
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
    //           |
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
    //           | Using TimeZone or user-set ZONE_OFFSET / DST_OFFSET
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
    //           V
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
    //   UTC millis (in time data member)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
    // If the user sets the UTC millis using setTime() or setTimeInMillis(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
    // the data flow is as follows.  This is implemented by the Calendar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
    // subclass's computeFields() method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
    //   UTC millis (in time data member)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
    //           |
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
    //           | Using TimeZone getOffset()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
    //           V
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
    //   local standard millis
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
    //           |
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
    //           | Using Calendar-specific algorithm
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
    //           V
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
    //   local fields (YEAR, MONTH, DATE, HOUR, MINUTE, etc.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
    // In general, a round trip from fields, through local and UTC millis, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
    // back out to fields is made when necessary.  This is implemented by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
    // complete() method.  Resolving a partial set of fields into a UTC millis
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
    // value allows all remaining fields to be generated from that value.  If
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
    // the Calendar is lenient, the fields are also renormalized to standard
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
    // ranges when they are regenerated.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
     * Field number for <code>get</code> and <code>set</code> indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
     * era, e.g., AD or BC in the Julian calendar. This is a calendar-specific
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
     * value; see subclass documentation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
     * @see GregorianCalendar#AD
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
     * @see GregorianCalendar#BC
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
    public final static int ERA = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
     * Field number for <code>get</code> and <code>set</code> indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
     * year. This is a calendar-specific value; see subclass documentation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
    public final static int YEAR = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
     * Field number for <code>get</code> and <code>set</code> indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
     * month. This is a calendar-specific value. The first month of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
     * the year in the Gregorian and Julian calendars is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
     * <code>JANUARY</code> which is 0; the last depends on the number
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
     * of months in a year.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
     * @see #JANUARY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
     * @see #FEBRUARY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
     * @see #MARCH
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
     * @see #APRIL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
     * @see #MAY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
     * @see #JUNE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
     * @see #JULY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
     * @see #AUGUST
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
     * @see #SEPTEMBER
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
     * @see #OCTOBER
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
     * @see #NOVEMBER
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
     * @see #DECEMBER
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
     * @see #UNDECIMBER
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
    public final static int MONTH = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
     * Field number for <code>get</code> and <code>set</code> indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
     * week number within the current year.  The first week of the year, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
     * defined by <code>getFirstDayOfWeek()</code> and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
     * <code>getMinimalDaysInFirstWeek()</code>, has value 1.  Subclasses define
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
     * the value of <code>WEEK_OF_YEAR</code> for days before the first week of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
     * the year.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
     * @see #getFirstDayOfWeek
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
     * @see #getMinimalDaysInFirstWeek
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
    public final static int WEEK_OF_YEAR = 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
     * Field number for <code>get</code> and <code>set</code> indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
     * week number within the current month.  The first week of the month, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
     * defined by <code>getFirstDayOfWeek()</code> and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
     * <code>getMinimalDaysInFirstWeek()</code>, has value 1.  Subclasses define
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
     * the value of <code>WEEK_OF_MONTH</code> for days before the first week of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
     * the month.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
     * @see #getFirstDayOfWeek
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
     * @see #getMinimalDaysInFirstWeek
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
    public final static int WEEK_OF_MONTH = 4;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
     * Field number for <code>get</code> and <code>set</code> indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
     * day of the month. This is a synonym for <code>DAY_OF_MONTH</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
     * The first day of the month has value 1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
     * @see #DAY_OF_MONTH
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
    public final static int DATE = 5;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
     * Field number for <code>get</code> and <code>set</code> indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
     * day of the month. This is a synonym for <code>DATE</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
     * The first day of the month has value 1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
     * @see #DATE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
    public final static int DAY_OF_MONTH = 5;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
     * Field number for <code>get</code> and <code>set</code> indicating the day
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
     * number within the current year.  The first day of the year has value 1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
    public final static int DAY_OF_YEAR = 6;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
     * Field number for <code>get</code> and <code>set</code> indicating the day
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
     * of the week.  This field takes values <code>SUNDAY</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
     * <code>MONDAY</code>, <code>TUESDAY</code>, <code>WEDNESDAY</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
     * <code>THURSDAY</code>, <code>FRIDAY</code>, and <code>SATURDAY</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
     * @see #SUNDAY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
     * @see #MONDAY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
     * @see #TUESDAY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
     * @see #WEDNESDAY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
     * @see #THURSDAY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
     * @see #FRIDAY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
     * @see #SATURDAY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
    public final static int DAY_OF_WEEK = 7;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
     * Field number for <code>get</code> and <code>set</code> indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
     * ordinal number of the day of the week within the current month. Together
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
     * with the <code>DAY_OF_WEEK</code> field, this uniquely specifies a day
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
     * within a month.  Unlike <code>WEEK_OF_MONTH</code> and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
     * <code>WEEK_OF_YEAR</code>, this field's value does <em>not</em> depend on
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
     * <code>getFirstDayOfWeek()</code> or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
     * <code>getMinimalDaysInFirstWeek()</code>.  <code>DAY_OF_MONTH 1</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
     * through <code>7</code> always correspond to <code>DAY_OF_WEEK_IN_MONTH
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
     * 1</code>; <code>8</code> through <code>14</code> correspond to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
     * <code>DAY_OF_WEEK_IN_MONTH 2</code>, and so on.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
     * <code>DAY_OF_WEEK_IN_MONTH 0</code> indicates the week before
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
     * <code>DAY_OF_WEEK_IN_MONTH 1</code>.  Negative values count back from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
     * end of the month, so the last Sunday of a month is specified as
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
     * <code>DAY_OF_WEEK = SUNDAY, DAY_OF_WEEK_IN_MONTH = -1</code>.  Because
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
     * negative values count backward they will usually be aligned differently
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
     * within the month than positive values.  For example, if a month has 31
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
     * days, <code>DAY_OF_WEEK_IN_MONTH -1</code> will overlap
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
     * <code>DAY_OF_WEEK_IN_MONTH 5</code> and the end of <code>4</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
     * @see #DAY_OF_WEEK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
     * @see #WEEK_OF_MONTH
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
    public final static int DAY_OF_WEEK_IN_MONTH = 8;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
     * Field number for <code>get</code> and <code>set</code> indicating
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
     * whether the <code>HOUR</code> is before or after noon.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
     * E.g., at 10:04:15.250 PM the <code>AM_PM</code> is <code>PM</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
     * @see #AM
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
     * @see #PM
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
     * @see #HOUR
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
    public final static int AM_PM = 9;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
     * Field number for <code>get</code> and <code>set</code> indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
     * hour of the morning or afternoon. <code>HOUR</code> is used for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
     * 12-hour clock (0 - 11). Noon and midnight are represented by 0, not by 12.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
     * E.g., at 10:04:15.250 PM the <code>HOUR</code> is 10.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
     * @see #AM_PM
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
     * @see #HOUR_OF_DAY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
    public final static int HOUR = 10;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
     * Field number for <code>get</code> and <code>set</code> indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
     * hour of the day. <code>HOUR_OF_DAY</code> is used for the 24-hour clock.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
     * E.g., at 10:04:15.250 PM the <code>HOUR_OF_DAY</code> is 22.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
     * @see #HOUR
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
    public final static int HOUR_OF_DAY = 11;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
     * Field number for <code>get</code> and <code>set</code> indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
     * minute within the hour.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
     * E.g., at 10:04:15.250 PM the <code>MINUTE</code> is 4.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
    public final static int MINUTE = 12;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
     * Field number for <code>get</code> and <code>set</code> indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
     * second within the minute.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
     * E.g., at 10:04:15.250 PM the <code>SECOND</code> is 15.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
    public final static int SECOND = 13;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
     * Field number for <code>get</code> and <code>set</code> indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
     * millisecond within the second.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
     * E.g., at 10:04:15.250 PM the <code>MILLISECOND</code> is 250.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
    public final static int MILLISECOND = 14;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
     * Field number for <code>get</code> and <code>set</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
     * indicating the raw offset from GMT in milliseconds.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
     * This field reflects the correct GMT offset value of the time
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
     * zone of this <code>Calendar</code> if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
     * <code>TimeZone</code> implementation subclass supports
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
     * historical GMT offset changes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
    public final static int ZONE_OFFSET = 15;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
     * Field number for <code>get</code> and <code>set</code> indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
     * daylight savings offset in milliseconds.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
     * This field reflects the correct daylight saving offset value of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
     * the time zone of this <code>Calendar</code> if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
     * <code>TimeZone</code> implementation subclass supports
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
     * historical Daylight Saving Time schedule changes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
    public final static int DST_OFFSET = 16;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
     * The number of distinct fields recognized by <code>get</code> and <code>set</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
     * Field numbers range from <code>0..FIELD_COUNT-1</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
    public final static int FIELD_COUNT = 17;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
     * Value of the {@link #DAY_OF_WEEK} field indicating
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
     * Sunday.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
    public final static int SUNDAY = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
     * Value of the {@link #DAY_OF_WEEK} field indicating
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
     * Monday.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
    public final static int MONDAY = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
     * Value of the {@link #DAY_OF_WEEK} field indicating
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
     * Tuesday.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
    public final static int TUESDAY = 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
     * Value of the {@link #DAY_OF_WEEK} field indicating
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
     * Wednesday.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
    public final static int WEDNESDAY = 4;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
     * Value of the {@link #DAY_OF_WEEK} field indicating
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
     * Thursday.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
    public final static int THURSDAY = 5;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
     * Value of the {@link #DAY_OF_WEEK} field indicating
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
     * Friday.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
    public final static int FRIDAY = 6;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
     * Value of the {@link #DAY_OF_WEEK} field indicating
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
     * Saturday.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
    public final static int SATURDAY = 7;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
     * Value of the {@link #MONTH} field indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
     * first month of the year in the Gregorian and Julian calendars.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
    public final static int JANUARY = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
     * Value of the {@link #MONTH} field indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
     * second month of the year in the Gregorian and Julian calendars.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
    public final static int FEBRUARY = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
     * Value of the {@link #MONTH} field indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
     * third month of the year in the Gregorian and Julian calendars.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
    public final static int MARCH = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
     * Value of the {@link #MONTH} field indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
     * fourth month of the year in the Gregorian and Julian calendars.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
    public final static int APRIL = 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
     * Value of the {@link #MONTH} field indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
     * fifth month of the year in the Gregorian and Julian calendars.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
    public final static int MAY = 4;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
     * Value of the {@link #MONTH} field indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
     * sixth month of the year in the Gregorian and Julian calendars.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
    public final static int JUNE = 5;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
     * Value of the {@link #MONTH} field indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
     * seventh month of the year in the Gregorian and Julian calendars.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
    public final static int JULY = 6;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
     * Value of the {@link #MONTH} field indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
     * eighth month of the year in the Gregorian and Julian calendars.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
    public final static int AUGUST = 7;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
     * Value of the {@link #MONTH} field indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
     * ninth month of the year in the Gregorian and Julian calendars.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
    public final static int SEPTEMBER = 8;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
     * Value of the {@link #MONTH} field indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
     * tenth month of the year in the Gregorian and Julian calendars.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
    public final static int OCTOBER = 9;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
     * Value of the {@link #MONTH} field indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
     * eleventh month of the year in the Gregorian and Julian calendars.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
    public final static int NOVEMBER = 10;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
     * Value of the {@link #MONTH} field indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
     * twelfth month of the year in the Gregorian and Julian calendars.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
    public final static int DECEMBER = 11;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
     * Value of the {@link #MONTH} field indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
     * thirteenth month of the year. Although <code>GregorianCalendar</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
     * does not use this value, lunar calendars do.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
    public final static int UNDECIMBER = 12;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
     * Value of the {@link #AM_PM} field indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
     * period of the day from midnight to just before noon.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
    public final static int AM = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
     * Value of the {@link #AM_PM} field indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
     * period of the day from noon to just before midnight.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
    public final static int PM = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
     * A style specifier for {@link #getDisplayNames(int, int, Locale)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
     * getDisplayNames} indicating names in all styles, such as
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
     * "January" and "Jan".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
     * @see #SHORT
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
     * @see #LONG
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
    public static final int ALL_STYLES = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
     * A style specifier for {@link #getDisplayName(int, int, Locale)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
     * getDisplayName} and {@link #getDisplayNames(int, int, Locale)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
     * getDisplayNames} indicating a short name, such as "Jan".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
     * @see #LONG
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
    public static final int SHORT = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
     * A style specifier for {@link #getDisplayName(int, int, Locale)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
     * getDisplayName} and {@link #getDisplayNames(int, int, Locale)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
     * getDisplayNames} indicating a long name, such as "January".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
     * @see #SHORT
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
    public static final int LONG = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
    // Internal notes:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
    // Calendar contains two kinds of time representations: current "time" in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
    // milliseconds, and a set of calendar "fields" representing the current time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
    // The two representations are usually in sync, but can get out of sync
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
    // as follows.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
    // 1. Initially, no fields are set, and the time is invalid.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
    // 2. If the time is set, all fields are computed and in sync.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
    // 3. If a single field is set, the time is invalid.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
    // Recomputation of the time and fields happens when the object needs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
    // to return a result to the user, or use a result for a computation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
     * The calendar field values for the currently set time for this calendar.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
     * This is an array of <code>FIELD_COUNT</code> integers, with index values
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
     * <code>ERA</code> through <code>DST_OFFSET</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
    protected int           fields[];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
     * The flags which tell if a specified calendar field for the calendar is set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
     * A new object has no fields set.  After the first call to a method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
     * which generates the fields, they all remain set after that.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
     * This is an array of <code>FIELD_COUNT</code> booleans, with index values
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
     * <code>ERA</code> through <code>DST_OFFSET</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
    protected boolean       isSet[];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
     * Pseudo-time-stamps which specify when each field was set. There
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
     * are two special values, UNSET and COMPUTED. Values from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
     * MINIMUM_USER_SET to Integer.MAX_VALUE are legal user set values.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
    transient private int   stamp[];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
     * The currently set time for this calendar, expressed in milliseconds after
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
     * January 1, 1970, 0:00:00 GMT.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
     * @see #isTimeSet
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
    protected long          time;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
     * True if then the value of <code>time</code> is valid.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
     * The time is made invalid by a change to an item of <code>field[]</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
     * @see #time
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
    protected boolean       isTimeSet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
     * True if <code>fields[]</code> are in sync with the currently set time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
     * If false, then the next attempt to get the value of a field will
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
     * force a recomputation of all fields from the current value of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
     * <code>time</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
    protected boolean       areFieldsSet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
     * True if all fields have been set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
    transient boolean       areAllFieldsSet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
     * <code>True</code> if this calendar allows out-of-range field values during computation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
     * of <code>time</code> from <code>fields[]</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
     * @see #setLenient
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
     * @see #isLenient
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
    private boolean         lenient = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
     * The <code>TimeZone</code> used by this calendar. <code>Calendar</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
     * uses the time zone data to translate between locale and GMT time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
    private TimeZone        zone;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
     * <code>True</code> if zone references to a shared TimeZone object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
    transient private boolean sharedZone = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
     * The first day of the week, with possible values <code>SUNDAY</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
     * <code>MONDAY</code>, etc.  This is a locale-dependent value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
    private int             firstDayOfWeek;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
     * The number of days required for the first week in a month or year,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
     * with possible values from 1 to 7.  This is a locale-dependent value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
    private int             minimalDaysInFirstWeek;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
     * Cache to hold the firstDayOfWeek and minimalDaysInFirstWeek
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
     * of a Locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
    private static Hashtable<Locale, int[]> cachedLocaleData = new Hashtable<Locale, int[]>(3);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
    // Special values of stamp[]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
     * The corresponding fields[] has no value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
    private static final int        UNSET = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
     * The value of the corresponding fields[] has been calculated internally.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
    private static final int        COMPUTED = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
     * The value of the corresponding fields[] has been set externally. Stamp
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
     * values which are greater than 1 represents the (pseudo) time when the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
     * corresponding fields[] value was set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
    private static final int        MINIMUM_USER_STAMP = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
     * The mask value that represents all of the fields.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
    static final int ALL_FIELDS = (1 << FIELD_COUNT) - 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
     * The next available value for <code>stamp[]</code>, an internal array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
     * This actually should not be written out to the stream, and will probably
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
     * be removed from the stream in the near future.  In the meantime,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
     * a value of <code>MINIMUM_USER_STAMP</code> should be used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
    private int             nextStamp = MINIMUM_USER_STAMP;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
    // the internal serial version which says which version was written
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
    // - 0 (default) for version up to JDK 1.1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   876
    // - 1 for version from JDK 1.1.6, which writes a correct 'time' value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
    //     as well as compatible values for other fields.  This is a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
    //     transitional format.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
    // - 2 (not implemented yet) a future version, in which fields[],
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
    //     areFieldsSet, and isTimeSet become transient, and isSet[] is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
    //     removed. In JDK 1.1.6 we write a format compatible with version 2.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
    static final int        currentSerialVersion = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
     * The version of the serialized data on the stream.  Possible values:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   886
     * <dl>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
     * <dt><b>0</b> or not present on stream</dt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
     * <dd>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
     * JDK 1.1.5 or earlier.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
     * </dd>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
     * <dt><b>1</b></dt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
     * <dd>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
     * JDK 1.1.6 or later.  Writes a correct 'time' value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
     * as well as compatible values for other fields.  This is a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
     * transitional format.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
     * </dd>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
     * </dl>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
     * When streaming out this class, the most recent format
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
     * and the highest allowable <code>serialVersionOnStream</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
     * is written.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
     * @since JDK1.1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   903
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   904
    private int             serialVersionOnStream = currentSerialVersion;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   905
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
    // Proclaim serialization compatibility with JDK 1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
    static final long       serialVersionUID = -1807547505821590642L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
    // Mask values for calendar fields
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
    final static int ERA_MASK           = (1 << ERA);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
    final static int YEAR_MASK          = (1 << YEAR);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
    final static int MONTH_MASK         = (1 << MONTH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
    final static int WEEK_OF_YEAR_MASK  = (1 << WEEK_OF_YEAR);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
    final static int WEEK_OF_MONTH_MASK = (1 << WEEK_OF_MONTH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
    final static int DAY_OF_MONTH_MASK  = (1 << DAY_OF_MONTH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
    final static int DATE_MASK          = DAY_OF_MONTH_MASK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
    final static int DAY_OF_YEAR_MASK   = (1 << DAY_OF_YEAR);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
    final static int DAY_OF_WEEK_MASK   = (1 << DAY_OF_WEEK);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
    final static int DAY_OF_WEEK_IN_MONTH_MASK  = (1 << DAY_OF_WEEK_IN_MONTH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   920
    final static int AM_PM_MASK         = (1 << AM_PM);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
    final static int HOUR_MASK          = (1 << HOUR);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
    final static int HOUR_OF_DAY_MASK   = (1 << HOUR_OF_DAY);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   923
    final static int MINUTE_MASK        = (1 << MINUTE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
    final static int SECOND_MASK        = (1 << SECOND);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
    final static int MILLISECOND_MASK   = (1 << MILLISECOND);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
    final static int ZONE_OFFSET_MASK   = (1 << ZONE_OFFSET);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   927
    final static int DST_OFFSET_MASK    = (1 << DST_OFFSET);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
90ce3da70b43 Initial load
duke
parents:
diff changeset
   929
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
     * Constructs a Calendar with the default time zone
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
     * and locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   932
     * @see     TimeZone#getDefault
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
    protected Calendar()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
    {
6489
9e7015635425 4700857: RFE: separating user locale and user interface locale
naoto
parents: 5506
diff changeset
   936
        this(TimeZone.getDefaultRef(), Locale.getDefault(Locale.Category.FORMAT));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
        sharedZone = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   939
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   941
     * Constructs a calendar with the specified time zone and locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   942
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
     * @param zone the time zone to use
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
     * @param aLocale the locale for the week data
90ce3da70b43 Initial load
duke
parents:
diff changeset
   945
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   946
    protected Calendar(TimeZone zone, Locale aLocale)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
        fields = new int[FIELD_COUNT];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
        isSet = new boolean[FIELD_COUNT];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
        stamp = new int[FIELD_COUNT];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
        this.zone = zone;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
        setWeekCountData(aLocale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
     * Gets a calendar using the default time zone and locale. The
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
     * <code>Calendar</code> returned is based on the current time
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
     * in the default time zone with the default locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
     * @return a Calendar.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
    public static Calendar getInstance()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
    {
6489
9e7015635425 4700857: RFE: separating user locale and user interface locale
naoto
parents: 5506
diff changeset
   965
        Calendar cal = createCalendar(TimeZone.getDefaultRef(), Locale.getDefault(Locale.Category.FORMAT));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
        cal.sharedZone = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
        return cal;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
     * Gets a calendar using the specified time zone and default locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
     * The <code>Calendar</code> returned is based on the current time
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
     * in the given time zone with the default locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
     * @param zone the time zone to use
90ce3da70b43 Initial load
duke
parents:
diff changeset
   976
     * @return a Calendar.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   978
    public static Calendar getInstance(TimeZone zone)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   979
    {
6489
9e7015635425 4700857: RFE: separating user locale and user interface locale
naoto
parents: 5506
diff changeset
   980
        return createCalendar(zone, Locale.getDefault(Locale.Category.FORMAT));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   981
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   984
     * Gets a calendar using the default time zone and specified locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   985
     * The <code>Calendar</code> returned is based on the current time
90ce3da70b43 Initial load
duke
parents:
diff changeset
   986
     * in the default time zone with the given locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   987
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
     * @param aLocale the locale for the week data
90ce3da70b43 Initial load
duke
parents:
diff changeset
   989
     * @return a Calendar.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   990
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   991
    public static Calendar getInstance(Locale aLocale)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   992
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   993
        Calendar cal = createCalendar(TimeZone.getDefaultRef(), aLocale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   994
        cal.sharedZone = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   995
        return cal;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   996
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   997
90ce3da70b43 Initial load
duke
parents:
diff changeset
   998
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   999
     * Gets a calendar with the specified time zone and locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1000
     * The <code>Calendar</code> returned is based on the current time
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1001
     * in the given time zone with the given locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1002
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1003
     * @param zone the time zone to use
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1004
     * @param aLocale the locale for the week data
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1005
     * @return a Calendar.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1006
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1007
    public static Calendar getInstance(TimeZone zone,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1008
                                       Locale aLocale)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1009
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1010
        return createCalendar(zone, aLocale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1011
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1012
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1013
    private static Calendar createCalendar(TimeZone zone,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1014
                                           Locale aLocale)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1015
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1016
        // If the specified locale is a Thai locale, returns a BuddhistCalendar
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1017
        // instance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1018
        if ("th".equals(aLocale.getLanguage())
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1019
            && ("TH".equals(aLocale.getCountry()))) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1020
            return new sun.util.BuddhistCalendar(zone, aLocale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1021
        } else if ("JP".equals(aLocale.getVariant())
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1022
                   && "JP".equals(aLocale.getCountry())
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1023
                   && "ja".equals(aLocale.getLanguage())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1024
            return new JapaneseImperialCalendar(zone, aLocale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1025
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1026
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1027
        // else create the default calendar
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1028
        return new GregorianCalendar(zone, aLocale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1029
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1030
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1031
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1032
     * Returns an array of all locales for which the <code>getInstance</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1033
     * methods of this class can return localized instances.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1034
     * The array returned must contain at least a <code>Locale</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1035
     * instance equal to {@link java.util.Locale#US Locale.US}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1036
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1037
     * @return An array of locales for which localized
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1038
     *         <code>Calendar</code> instances are available.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1039
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1040
    public static synchronized Locale[] getAvailableLocales()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1041
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1042
        return DateFormat.getAvailableLocales();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1043
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1044
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1045
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1046
     * Converts the current calendar field values in {@link #fields fields[]}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1047
     * to the millisecond time value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1048
     * {@link #time}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1049
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1050
     * @see #complete()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1051
     * @see #computeFields()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1052
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1053
    protected abstract void computeTime();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1054
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1055
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1056
     * Converts the current millisecond time value {@link #time}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1057
     * to calendar field values in {@link #fields fields[]}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1058
     * This allows you to sync up the calendar field values with
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1059
     * a new time that is set for the calendar.  The time is <em>not</em>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1060
     * recomputed first; to recompute the time, then the fields, call the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1061
     * {@link #complete()} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1062
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1063
     * @see #computeTime()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1064
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1065
    protected abstract void computeFields();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1066
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1067
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1068
     * Returns a <code>Date</code> object representing this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1069
     * <code>Calendar</code>'s time value (millisecond offset from the <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1070
     * href="#Epoch">Epoch</a>").
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1071
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1072
     * @return a <code>Date</code> representing the time value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1073
     * @see #setTime(Date)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1074
     * @see #getTimeInMillis()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1075
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1076
    public final Date getTime() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1077
        return new Date(getTimeInMillis());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1078
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1079
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1080
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1081
     * Sets this Calendar's time with the given <code>Date</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1082
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1083
     * Note: Calling <code>setTime()</code> with
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1084
     * <code>Date(Long.MAX_VALUE)</code> or <code>Date(Long.MIN_VALUE)</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1085
     * may yield incorrect field values from <code>get()</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1086
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1087
     * @param date the given Date.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1088
     * @see #getTime()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1089
     * @see #setTimeInMillis(long)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1090
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1091
    public final void setTime(Date date) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1092
        setTimeInMillis(date.getTime());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1093
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1094
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1095
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1096
     * Returns this Calendar's time value in milliseconds.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1097
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1098
     * @return the current time as UTC milliseconds from the epoch.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1099
     * @see #getTime()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1100
     * @see #setTimeInMillis(long)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1101
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1102
    public long getTimeInMillis() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1103
        if (!isTimeSet) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1104
            updateTime();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1105
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1106
        return time;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1107
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1108
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1109
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1110
     * Sets this Calendar's current time from the given long value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1111
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1112
     * @param millis the new time in UTC milliseconds from the epoch.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1113
     * @see #setTime(Date)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1114
     * @see #getTimeInMillis()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1115
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1116
    public void setTimeInMillis(long millis) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1117
        // If we don't need to recalculate the calendar field values,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1118
        // do nothing.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1119
        if (time == millis && isTimeSet && areFieldsSet && areAllFieldsSet
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1120
            && (zone instanceof ZoneInfo) && !((ZoneInfo)zone).isDirty()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1121
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1122
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1123
        time = millis;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1124
        isTimeSet = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1125
        areFieldsSet = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1126
        computeFields();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1127
        areAllFieldsSet = areFieldsSet = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1128
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1129
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1130
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1131
     * Returns the value of the given calendar field. In lenient mode,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1132
     * all calendar fields are normalized. In non-lenient mode, all
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1133
     * calendar fields are validated and this method throws an
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1134
     * exception if any calendar fields have out-of-range values. The
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1135
     * normalization and validation are handled by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1136
     * {@link #complete()} method, which process is calendar
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1137
     * system dependent.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1138
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1139
     * @param field the given calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1140
     * @return the value for the given calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1141
     * @throws ArrayIndexOutOfBoundsException if the specified field is out of range
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1142
     *             (<code>field &lt; 0 || field &gt;= FIELD_COUNT</code>).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1143
     * @see #set(int,int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1144
     * @see #complete()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1145
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1146
    public int get(int field)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1147
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1148
        complete();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1149
        return internalGet(field);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1150
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1151
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1152
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1153
     * Returns the value of the given calendar field. This method does
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1154
     * not involve normalization or validation of the field value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1155
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1156
     * @param field the given calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1157
     * @return the value for the given calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1158
     * @see #get(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1159
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1160
    protected final int internalGet(int field)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1161
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1162
        return fields[field];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1163
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1164
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1165
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1166
     * Sets the value of the given calendar field. This method does
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1167
     * not affect any setting state of the field in this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1168
     * <code>Calendar</code> instance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1169
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1170
     * @throws IndexOutOfBoundsException if the specified field is out of range
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1171
     *             (<code>field &lt; 0 || field &gt;= FIELD_COUNT</code>).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1172
     * @see #areFieldsSet
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1173
     * @see #isTimeSet
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1174
     * @see #areAllFieldsSet
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1175
     * @see #set(int,int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1176
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1177
    final void internalSet(int field, int value)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1178
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1179
        fields[field] = value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1180
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1181
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1182
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1183
     * Sets the given calendar field to the given value. The value is not
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1184
     * interpreted by this method regardless of the leniency mode.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1185
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1186
     * @param field the given calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1187
     * @param value the value to be set for the given calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1188
     * @throws ArrayIndexOutOfBoundsException if the specified field is out of range
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1189
     *             (<code>field &lt; 0 || field &gt;= FIELD_COUNT</code>).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1190
     * in non-lenient mode.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1191
     * @see #set(int,int,int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1192
     * @see #set(int,int,int,int,int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1193
     * @see #set(int,int,int,int,int,int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1194
     * @see #get(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1195
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1196
    public void set(int field, int value)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1197
    {
1828
26bee4a3a499 6645263: (cal) Calendar throw java.lang.IllegalArgumentException: WEEK_OF_MONTH
peytoia
parents: 2
diff changeset
  1198
        // If the fields are partially normalized, calculate all the
26bee4a3a499 6645263: (cal) Calendar throw java.lang.IllegalArgumentException: WEEK_OF_MONTH
peytoia
parents: 2
diff changeset
  1199
        // fields before changing any fields.
26bee4a3a499 6645263: (cal) Calendar throw java.lang.IllegalArgumentException: WEEK_OF_MONTH
peytoia
parents: 2
diff changeset
  1200
        if (areFieldsSet && !areAllFieldsSet) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1201
            computeFields();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1202
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1203
        internalSet(field, value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1204
        isTimeSet = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1205
        areFieldsSet = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1206
        isSet[field] = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1207
        stamp[field] = nextStamp++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1208
        if (nextStamp == Integer.MAX_VALUE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1209
            adjustStamp();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1210
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1211
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1212
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1213
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1214
     * Sets the values for the calendar fields <code>YEAR</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1215
     * <code>MONTH</code>, and <code>DAY_OF_MONTH</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1216
     * Previous values of other calendar fields are retained.  If this is not desired,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1217
     * call {@link #clear()} first.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1218
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1219
     * @param year the value used to set the <code>YEAR</code> calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1220
     * @param month the value used to set the <code>MONTH</code> calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1221
     * Month value is 0-based. e.g., 0 for January.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1222
     * @param date the value used to set the <code>DAY_OF_MONTH</code> calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1223
     * @see #set(int,int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1224
     * @see #set(int,int,int,int,int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1225
     * @see #set(int,int,int,int,int,int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1226
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1227
    public final void set(int year, int month, int date)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1228
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1229
        set(YEAR, year);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1230
        set(MONTH, month);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1231
        set(DATE, date);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1232
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1233
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1234
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1235
     * Sets the values for the calendar fields <code>YEAR</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1236
     * <code>MONTH</code>, <code>DAY_OF_MONTH</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1237
     * <code>HOUR_OF_DAY</code>, and <code>MINUTE</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1238
     * Previous values of other fields are retained.  If this is not desired,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1239
     * call {@link #clear()} first.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1240
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1241
     * @param year the value used to set the <code>YEAR</code> calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1242
     * @param month the value used to set the <code>MONTH</code> calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1243
     * Month value is 0-based. e.g., 0 for January.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1244
     * @param date the value used to set the <code>DAY_OF_MONTH</code> calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1245
     * @param hourOfDay the value used to set the <code>HOUR_OF_DAY</code> calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1246
     * @param minute the value used to set the <code>MINUTE</code> calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1247
     * @see #set(int,int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1248
     * @see #set(int,int,int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1249
     * @see #set(int,int,int,int,int,int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1250
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1251
    public final void set(int year, int month, int date, int hourOfDay, int minute)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1252
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1253
        set(YEAR, year);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1254
        set(MONTH, month);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1255
        set(DATE, date);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1256
        set(HOUR_OF_DAY, hourOfDay);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1257
        set(MINUTE, minute);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1258
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1259
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1260
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1261
     * Sets the values for the fields <code>YEAR</code>, <code>MONTH</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1262
     * <code>DAY_OF_MONTH</code>, <code>HOUR</code>, <code>MINUTE</code>, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1263
     * <code>SECOND</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1264
     * Previous values of other fields are retained.  If this is not desired,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1265
     * call {@link #clear()} first.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1266
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1267
     * @param year the value used to set the <code>YEAR</code> calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1268
     * @param month the value used to set the <code>MONTH</code> calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1269
     * Month value is 0-based. e.g., 0 for January.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1270
     * @param date the value used to set the <code>DAY_OF_MONTH</code> calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1271
     * @param hourOfDay the value used to set the <code>HOUR_OF_DAY</code> calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1272
     * @param minute the value used to set the <code>MINUTE</code> calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1273
     * @param second the value used to set the <code>SECOND</code> calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1274
     * @see #set(int,int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1275
     * @see #set(int,int,int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1276
     * @see #set(int,int,int,int,int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1277
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1278
    public final void set(int year, int month, int date, int hourOfDay, int minute,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1279
                          int second)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1280
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1281
        set(YEAR, year);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1282
        set(MONTH, month);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1283
        set(DATE, date);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1284
        set(HOUR_OF_DAY, hourOfDay);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1285
        set(MINUTE, minute);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1286
        set(SECOND, second);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1287
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1288
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1289
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1290
     * Sets all the calendar field values and the time value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1291
     * (millisecond offset from the <a href="#Epoch">Epoch</a>) of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1292
     * this <code>Calendar</code> undefined. This means that {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1293
     * #isSet(int) isSet()} will return <code>false</code> for all the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1294
     * calendar fields, and the date and time calculations will treat
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1295
     * the fields as if they had never been set. A
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1296
     * <code>Calendar</code> implementation class may use its specific
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1297
     * default field values for date/time calculations. For example,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1298
     * <code>GregorianCalendar</code> uses 1970 if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1299
     * <code>YEAR</code> field value is undefined.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1300
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1301
     * @see #clear(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1302
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1303
    public final void clear()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1304
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1305
        for (int i = 0; i < fields.length; ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1306
            stamp[i] = fields[i] = 0; // UNSET == 0
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1307
            isSet[i++] = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1308
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1309
        areAllFieldsSet = areFieldsSet = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1310
        isTimeSet = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1311
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1312
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1313
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1314
     * Sets the given calendar field value and the time value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1315
     * (millisecond offset from the <a href="#Epoch">Epoch</a>) of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1316
     * this <code>Calendar</code> undefined. This means that {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1317
     * #isSet(int) isSet(field)} will return <code>false</code>, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1318
     * the date and time calculations will treat the field as if it
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1319
     * had never been set. A <code>Calendar</code> implementation
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1320
     * class may use the field's specific default value for date and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1321
     * time calculations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1322
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1323
     * <p>The {@link #HOUR_OF_DAY}, {@link #HOUR} and {@link #AM_PM}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1324
     * fields are handled independently and the <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1325
     * href="#time_resolution">the resolution rule for the time of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1326
     * day</a> is applied. Clearing one of the fields doesn't reset
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1327
     * the hour of day value of this <code>Calendar</code>. Use {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1328
     * #set(int,int) set(Calendar.HOUR_OF_DAY, 0)} to reset the hour
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1329
     * value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1330
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1331
     * @param field the calendar field to be cleared.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1332
     * @see #clear()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1333
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1334
    public final void clear(int field)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1335
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1336
        fields[field] = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1337
        stamp[field] = UNSET;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1338
        isSet[field] = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1339
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1340
        areAllFieldsSet = areFieldsSet = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1341
        isTimeSet = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1342
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1343
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1344
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1345
     * Determines if the given calendar field has a value set,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1346
     * including cases that the value has been set by internal fields
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1347
     * calculations triggered by a <code>get</code> method call.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1348
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1349
     * @return <code>true</code> if the given calendar field has a value set;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1350
     * <code>false</code> otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1351
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1352
    public final boolean isSet(int field)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1353
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1354
        return stamp[field] != UNSET;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1355
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1356
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1357
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1358
     * Returns the string representation of the calendar
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1359
     * <code>field</code> value in the given <code>style</code> and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1360
     * <code>locale</code>.  If no string representation is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1361
     * applicable, <code>null</code> is returned. This method calls
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1362
     * {@link Calendar#get(int) get(field)} to get the calendar
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1363
     * <code>field</code> value if the string representation is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1364
     * applicable to the given calendar <code>field</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1365
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1366
     * <p>For example, if this <code>Calendar</code> is a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1367
     * <code>GregorianCalendar</code> and its date is 2005-01-01, then
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1368
     * the string representation of the {@link #MONTH} field would be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1369
     * "January" in the long style in an English locale or "Jan" in
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1370
     * the short style. However, no string representation would be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1371
     * available for the {@link #DAY_OF_MONTH} field, and this method
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1372
     * would return <code>null</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1373
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1374
     * <p>The default implementation supports the calendar fields for
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1375
     * which a {@link DateFormatSymbols} has names in the given
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1376
     * <code>locale</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1377
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1378
     * @param field
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1379
     *        the calendar field for which the string representation
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1380
     *        is returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1381
     * @param style
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1382
     *        the style applied to the string representation; one of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1383
     *        {@link #SHORT} or {@link #LONG}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1384
     * @param locale
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1385
     *        the locale for the string representation
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1386
     * @return the string representation of the given
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1387
     *        <code>field</code> in the given <code>style</code>, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1388
     *        <code>null</code> if no string representation is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1389
     *        applicable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1390
     * @exception IllegalArgumentException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1391
     *        if <code>field</code> or <code>style</code> is invalid,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1392
     *        or if this <code>Calendar</code> is non-lenient and any
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1393
     *        of the calendar fields have invalid values
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1394
     * @exception NullPointerException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1395
     *        if <code>locale</code> is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1396
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1397
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1398
    public String getDisplayName(int field, int style, Locale locale) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1399
        if (!checkDisplayNameParams(field, style, ALL_STYLES, LONG, locale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1400
                                    ERA_MASK|MONTH_MASK|DAY_OF_WEEK_MASK|AM_PM_MASK)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1401
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1402
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1403
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1404
        DateFormatSymbols symbols = DateFormatSymbols.getInstance(locale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1405
        String[] strings = getFieldStrings(field, style, symbols);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1406
        if (strings != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1407
            int fieldValue = get(field);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1408
            if (fieldValue < strings.length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1409
                return strings[fieldValue];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1410
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1411
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1412
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1413
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1414
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1415
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1416
     * Returns a <code>Map</code> containing all names of the calendar
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1417
     * <code>field</code> in the given <code>style</code> and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1418
     * <code>locale</code> and their corresponding field values. For
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1419
     * example, if this <code>Calendar</code> is a {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1420
     * GregorianCalendar}, the returned map would contain "Jan" to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1421
     * {@link #JANUARY}, "Feb" to {@link #FEBRUARY}, and so on, in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1422
     * {@linkplain #SHORT short} style in an English locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1423
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1424
     * <p>The values of other calendar fields may be taken into
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1425
     * account to determine a set of display names. For example, if
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1426
     * this <code>Calendar</code> is a lunisolar calendar system and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1427
     * the year value given by the {@link #YEAR} field has a leap
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1428
     * month, this method would return month names containing the leap
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1429
     * month name, and month names are mapped to their values specific
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1430
     * for the year.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1431
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1432
     * <p>The default implementation supports display names contained in
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1433
     * a {@link DateFormatSymbols}. For example, if <code>field</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1434
     * is {@link #MONTH} and <code>style</code> is {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1435
     * #ALL_STYLES}, this method returns a <code>Map</code> containing
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1436
     * all strings returned by {@link DateFormatSymbols#getShortMonths()}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1437
     * and {@link DateFormatSymbols#getMonths()}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1438
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1439
     * @param field
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1440
     *        the calendar field for which the display names are returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1441
     * @param style
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1442
     *        the style applied to the display names; one of {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1443
     *        #SHORT}, {@link #LONG}, or {@link #ALL_STYLES}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1444
     * @param locale
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1445
     *        the locale for the display names
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1446
     * @return a <code>Map</code> containing all display names in
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1447
     *        <code>style</code> and <code>locale</code> and their
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1448
     *        field values, or <code>null</code> if no display names
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1449
     *        are defined for <code>field</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1450
     * @exception IllegalArgumentException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1451
     *        if <code>field</code> or <code>style</code> is invalid,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1452
     *        or if this <code>Calendar</code> is non-lenient and any
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1453
     *        of the calendar fields have invalid values
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1454
     * @exception NullPointerException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1455
     *        if <code>locale</code> is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1456
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1457
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1458
    public Map<String, Integer> getDisplayNames(int field, int style, Locale locale) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1459
        if (!checkDisplayNameParams(field, style, ALL_STYLES, LONG, locale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1460
                                    ERA_MASK|MONTH_MASK|DAY_OF_WEEK_MASK|AM_PM_MASK)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1461
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1462
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1463
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1464
        // ALL_STYLES
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1465
        if (style == ALL_STYLES) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1466
            Map<String,Integer> shortNames = getDisplayNamesImpl(field, SHORT, locale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1467
            if (field == ERA || field == AM_PM) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1468
                return shortNames;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1469
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1470
            Map<String,Integer> longNames = getDisplayNamesImpl(field, LONG, locale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1471
            if (shortNames == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1472
                return longNames;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1473
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1474
            if (longNames != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1475
                shortNames.putAll(longNames);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1476
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1477
            return shortNames;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1478
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1479
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1480
        // SHORT or LONG
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1481
        return getDisplayNamesImpl(field, style, locale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1482
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1483
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1484
    private Map<String,Integer> getDisplayNamesImpl(int field, int style, Locale locale) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1485
        DateFormatSymbols symbols = DateFormatSymbols.getInstance(locale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1486
        String[] strings = getFieldStrings(field, style, symbols);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1487
        if (strings != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1488
            Map<String,Integer> names = new HashMap<String,Integer>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1489
            for (int i = 0; i < strings.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1490
                if (strings[i].length() == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1491
                    continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1492
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1493
                names.put(strings[i], i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1494
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1495
            return names;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1496
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1497
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1498
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1499
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1500
    boolean checkDisplayNameParams(int field, int style, int minStyle, int maxStyle,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1501
                                   Locale locale, int fieldMask) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1502
        if (field < 0 || field >= fields.length ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1503
            style < minStyle || style > maxStyle) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1504
            throw new IllegalArgumentException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1505
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1506
        if (locale == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1507
            throw new NullPointerException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1508
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1509
        return isFieldSet(fieldMask, field);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1510
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1511
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1512
    private String[] getFieldStrings(int field, int style, DateFormatSymbols symbols) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1513
        String[] strings = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1514
        switch (field) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1515
        case ERA:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1516
            strings = symbols.getEras();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1517
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1518
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1519
        case MONTH:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1520
            strings = (style == LONG) ? symbols.getMonths() : symbols.getShortMonths();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1521
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1522
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1523
        case DAY_OF_WEEK:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1524
            strings = (style == LONG) ? symbols.getWeekdays() : symbols.getShortWeekdays();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1525
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1526
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1527
        case AM_PM:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1528
            strings = symbols.getAmPmStrings();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1529
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1530
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1531
        return strings;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1532
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1533
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1534
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1535
     * Fills in any unset fields in the calendar fields. First, the {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1536
     * #computeTime()} method is called if the time value (millisecond offset
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1537
     * from the <a href="#Epoch">Epoch</a>) has not been calculated from
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1538
     * calendar field values. Then, the {@link #computeFields()} method is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1539
     * called to calculate all calendar field values.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1540
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1541
    protected void complete()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1542
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1543
        if (!isTimeSet)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1544
            updateTime();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1545
        if (!areFieldsSet || !areAllFieldsSet) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1546
            computeFields(); // fills in unset fields
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1547
            areAllFieldsSet = areFieldsSet = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1548
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1549
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1550
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1551
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1552
     * Returns whether the value of the specified calendar field has been set
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1553
     * externally by calling one of the setter methods rather than by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1554
     * internal time calculation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1555
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1556
     * @return <code>true</code> if the field has been set externally,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1557
     * <code>false</code> otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1558
     * @exception IndexOutOfBoundsException if the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1559
     *                <code>field</code> is out of range
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1560
     *               (<code>field &lt; 0 || field &gt;= FIELD_COUNT</code>).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1561
     * @see #selectFields()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1562
     * @see #setFieldsComputed(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1563
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1564
    final boolean isExternallySet(int field) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1565
        return stamp[field] >= MINIMUM_USER_STAMP;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1566
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1567
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1568
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1569
     * Returns a field mask (bit mask) indicating all calendar fields that
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1570
     * have the state of externally or internally set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1571
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1572
     * @return a bit mask indicating set state fields
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1573
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1574
    final int getSetStateFields() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1575
        int mask = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1576
        for (int i = 0; i < fields.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1577
            if (stamp[i] != UNSET) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1578
                mask |= 1 << i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1579
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1580
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1581
        return mask;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1582
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1583
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1584
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1585
     * Sets the state of the specified calendar fields to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1586
     * <em>computed</em>. This state means that the specified calendar fields
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1587
     * have valid values that have been set by internal time calculation
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1588
     * rather than by calling one of the setter methods.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1589
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1590
     * @param fieldMask the field to be marked as computed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1591
     * @exception IndexOutOfBoundsException if the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1592
     *                <code>field</code> is out of range
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1593
     *               (<code>field &lt; 0 || field &gt;= FIELD_COUNT</code>).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1594
     * @see #isExternallySet(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1595
     * @see #selectFields()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1596
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1597
    final void setFieldsComputed(int fieldMask) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1598
        if (fieldMask == ALL_FIELDS) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1599
            for (int i = 0; i < fields.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1600
                stamp[i] = COMPUTED;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1601
                isSet[i] = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1602
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1603
            areFieldsSet = areAllFieldsSet = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1604
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1605
            for (int i = 0; i < fields.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1606
                if ((fieldMask & 1) == 1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1607
                    stamp[i] = COMPUTED;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1608
                    isSet[i] = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1609
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1610
                    if (areAllFieldsSet && !isSet[i]) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1611
                        areAllFieldsSet = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1612
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1613
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1614
                fieldMask >>>= 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1615
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1616
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1617
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1618
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1619
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1620
     * Sets the state of the calendar fields that are <em>not</em> specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1621
     * by <code>fieldMask</code> to <em>unset</em>. If <code>fieldMask</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1622
     * specifies all the calendar fields, then the state of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1623
     * <code>Calendar</code> becomes that all the calendar fields are in sync
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1624
     * with the time value (millisecond offset from the Epoch).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1625
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1626
     * @param fieldMask the field mask indicating which calendar fields are in
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1627
     * sync with the time value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1628
     * @exception IndexOutOfBoundsException if the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1629
     *                <code>field</code> is out of range
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1630
     *               (<code>field &lt; 0 || field &gt;= FIELD_COUNT</code>).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1631
     * @see #isExternallySet(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1632
     * @see #selectFields()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1633
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1634
    final void setFieldsNormalized(int fieldMask) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1635
        if (fieldMask != ALL_FIELDS) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1636
            for (int i = 0; i < fields.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1637
                if ((fieldMask & 1) == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1638
                    stamp[i] = fields[i] = 0; // UNSET == 0
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1639
                    isSet[i] = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1640
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1641
                fieldMask >>= 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1642
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1643
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1644
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1645
        // Some or all of the fields are in sync with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1646
        // milliseconds, but the stamp values are not normalized yet.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1647
        areFieldsSet = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1648
        areAllFieldsSet = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1649
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1650
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1651
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1652
     * Returns whether the calendar fields are partially in sync with the time
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1653
     * value or fully in sync but not stamp values are not normalized yet.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1654
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1655
    final boolean isPartiallyNormalized() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1656
        return areFieldsSet && !areAllFieldsSet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1657
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1658
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1659
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1660
     * Returns whether the calendar fields are fully in sync with the time
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1661
     * value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1662
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1663
    final boolean isFullyNormalized() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1664
        return areFieldsSet && areAllFieldsSet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1665
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1666
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1667
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1668
     * Marks this Calendar as not sync'd.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1669
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1670
    final void setUnnormalized() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1671
        areFieldsSet = areAllFieldsSet = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1672
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1673
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1674
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1675
     * Returns whether the specified <code>field</code> is on in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1676
     * <code>fieldMask</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1677
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1678
    static final boolean isFieldSet(int fieldMask, int field) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1679
        return (fieldMask & (1 << field)) != 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1680
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1681
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1682
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1683
     * Returns a field mask indicating which calendar field values
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1684
     * to be used to calculate the time value. The calendar fields are
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1685
     * returned as a bit mask, each bit of which corresponds to a field, i.e.,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1686
     * the mask value of <code>field</code> is <code>(1 &lt;&lt;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1687
     * field)</code>. For example, 0x26 represents the <code>YEAR</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1688
     * <code>MONTH</code>, and <code>DAY_OF_MONTH</code> fields (i.e., 0x26 is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1689
     * equal to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1690
     * <code>(1&lt;&lt;YEAR)|(1&lt;&lt;MONTH)|(1&lt;&lt;DAY_OF_MONTH))</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1691
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1692
     * <p>This method supports the calendar fields resolution as described in
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1693
     * the class description. If the bit mask for a given field is on and its
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1694
     * field has not been set (i.e., <code>isSet(field)</code> is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1695
     * <code>false</code>), then the default value of the field has to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1696
     * used, which case means that the field has been selected because the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1697
     * selected combination involves the field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1698
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1699
     * @return a bit mask of selected fields
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1700
     * @see #isExternallySet(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1701
     * @see #setInternallySetState(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1702
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1703
    final int selectFields() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1704
        // This implementation has been taken from the GregorianCalendar class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1705
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1706
        // The YEAR field must always be used regardless of its SET
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1707
        // state because YEAR is a mandatory field to determine the date
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1708
        // and the default value (EPOCH_YEAR) may change through the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1709
        // normalization process.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1710
        int fieldMask = YEAR_MASK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1711
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1712
        if (stamp[ERA] != UNSET) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1713
            fieldMask |= ERA_MASK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1714
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1715
        // Find the most recent group of fields specifying the day within
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1716
        // the year.  These may be any of the following combinations:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1717
        //   MONTH + DAY_OF_MONTH
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1718
        //   MONTH + WEEK_OF_MONTH + DAY_OF_WEEK
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1719
        //   MONTH + DAY_OF_WEEK_IN_MONTH + DAY_OF_WEEK
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1720
        //   DAY_OF_YEAR
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1721
        //   WEEK_OF_YEAR + DAY_OF_WEEK
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1722
        // We look for the most recent of the fields in each group to determine
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1723
        // the age of the group.  For groups involving a week-related field such
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1724
        // as WEEK_OF_MONTH, DAY_OF_WEEK_IN_MONTH, or WEEK_OF_YEAR, both the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1725
        // week-related field and the DAY_OF_WEEK must be set for the group as a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1726
        // whole to be considered.  (See bug 4153860 - liu 7/24/98.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1727
        int dowStamp = stamp[DAY_OF_WEEK];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1728
        int monthStamp = stamp[MONTH];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1729
        int domStamp = stamp[DAY_OF_MONTH];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1730
        int womStamp = aggregateStamp(stamp[WEEK_OF_MONTH], dowStamp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1731
        int dowimStamp = aggregateStamp(stamp[DAY_OF_WEEK_IN_MONTH], dowStamp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1732
        int doyStamp = stamp[DAY_OF_YEAR];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1733
        int woyStamp = aggregateStamp(stamp[WEEK_OF_YEAR], dowStamp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1734
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1735
        int bestStamp = domStamp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1736
        if (womStamp > bestStamp) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1737
            bestStamp = womStamp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1738
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1739
        if (dowimStamp > bestStamp) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1740
            bestStamp = dowimStamp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1741
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1742
        if (doyStamp > bestStamp) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1743
            bestStamp = doyStamp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1744
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1745
        if (woyStamp > bestStamp) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1746
            bestStamp = woyStamp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1747
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1748
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1749
        /* No complete combination exists.  Look for WEEK_OF_MONTH,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1750
         * DAY_OF_WEEK_IN_MONTH, or WEEK_OF_YEAR alone.  Treat DAY_OF_WEEK alone
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1751
         * as DAY_OF_WEEK_IN_MONTH.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1752
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1753
        if (bestStamp == UNSET) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1754
            womStamp = stamp[WEEK_OF_MONTH];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1755
            dowimStamp = Math.max(stamp[DAY_OF_WEEK_IN_MONTH], dowStamp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1756
            woyStamp = stamp[WEEK_OF_YEAR];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1757
            bestStamp = Math.max(Math.max(womStamp, dowimStamp), woyStamp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1758
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1759
            /* Treat MONTH alone or no fields at all as DAY_OF_MONTH.  This may
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1760
             * result in bestStamp = domStamp = UNSET if no fields are set,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1761
             * which indicates DAY_OF_MONTH.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1762
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1763
            if (bestStamp == UNSET) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1764
                bestStamp = domStamp = monthStamp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1765
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1766
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1767
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1768
        if (bestStamp == domStamp ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1769
           (bestStamp == womStamp && stamp[WEEK_OF_MONTH] >= stamp[WEEK_OF_YEAR]) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1770
           (bestStamp == dowimStamp && stamp[DAY_OF_WEEK_IN_MONTH] >= stamp[WEEK_OF_YEAR])) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1771
            fieldMask |= MONTH_MASK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1772
            if (bestStamp == domStamp) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1773
                fieldMask |= DAY_OF_MONTH_MASK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1774
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1775
                assert (bestStamp == womStamp || bestStamp == dowimStamp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1776
                if (dowStamp != UNSET) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1777
                    fieldMask |= DAY_OF_WEEK_MASK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1778
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1779
                if (womStamp == dowimStamp) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1780
                    // When they are equal, give the priority to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1781
                    // WEEK_OF_MONTH for compatibility.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1782
                    if (stamp[WEEK_OF_MONTH] >= stamp[DAY_OF_WEEK_IN_MONTH]) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1783
                        fieldMask |= WEEK_OF_MONTH_MASK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1784
                    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1785
                        fieldMask |= DAY_OF_WEEK_IN_MONTH_MASK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1786
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1787
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1788
                    if (bestStamp == womStamp) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1789
                        fieldMask |= WEEK_OF_MONTH_MASK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1790
                    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1791
                        assert (bestStamp == dowimStamp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1792
                        if (stamp[DAY_OF_WEEK_IN_MONTH] != UNSET) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1793
                            fieldMask |= DAY_OF_WEEK_IN_MONTH_MASK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1794
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1795
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1796
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1797
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1798
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1799
            assert (bestStamp == doyStamp || bestStamp == woyStamp ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1800
                    bestStamp == UNSET);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1801
            if (bestStamp == doyStamp) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1802
                fieldMask |= DAY_OF_YEAR_MASK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1803
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1804
                assert (bestStamp == woyStamp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1805
                if (dowStamp != UNSET) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1806
                    fieldMask |= DAY_OF_WEEK_MASK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1807
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1808
                fieldMask |= WEEK_OF_YEAR_MASK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1809
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1810
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1811
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1812
        // Find the best set of fields specifying the time of day.  There
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1813
        // are only two possibilities here; the HOUR_OF_DAY or the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1814
        // AM_PM and the HOUR.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1815
        int hourOfDayStamp = stamp[HOUR_OF_DAY];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1816
        int hourStamp = aggregateStamp(stamp[HOUR], stamp[AM_PM]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1817
        bestStamp = (hourStamp > hourOfDayStamp) ? hourStamp : hourOfDayStamp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1818
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1819
        // if bestStamp is still UNSET, then take HOUR or AM_PM. (See 4846659)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1820
        if (bestStamp == UNSET) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1821
            bestStamp = Math.max(stamp[HOUR], stamp[AM_PM]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1822
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1823
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1824
        // Hours
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1825
        if (bestStamp != UNSET) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1826
            if (bestStamp == hourOfDayStamp) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1827
                fieldMask |= HOUR_OF_DAY_MASK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1828
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1829
                fieldMask |= HOUR_MASK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1830
                if (stamp[AM_PM] != UNSET) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1831
                    fieldMask |= AM_PM_MASK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1832
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1833
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1834
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1835
        if (stamp[MINUTE] != UNSET) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1836
            fieldMask |= MINUTE_MASK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1837
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1838
        if (stamp[SECOND] != UNSET) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1839
            fieldMask |= SECOND_MASK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1840
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1841
        if (stamp[MILLISECOND] != UNSET) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1842
            fieldMask |= MILLISECOND_MASK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1843
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1844
        if (stamp[ZONE_OFFSET] >= MINIMUM_USER_STAMP) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1845
                fieldMask |= ZONE_OFFSET_MASK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1846
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1847
        if (stamp[DST_OFFSET] >= MINIMUM_USER_STAMP) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1848
            fieldMask |= DST_OFFSET_MASK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1849
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1850
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1851
        return fieldMask;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1852
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1853
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1854
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1855
     * Returns the pseudo-time-stamp for two fields, given their
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1856
     * individual pseudo-time-stamps.  If either of the fields
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1857
     * is unset, then the aggregate is unset.  Otherwise, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1858
     * aggregate is the later of the two stamps.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1859
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1860
    private static final int aggregateStamp(int stamp_a, int stamp_b) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1861
        if (stamp_a == UNSET || stamp_b == UNSET) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1862
            return UNSET;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1863
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1864
        return (stamp_a > stamp_b) ? stamp_a : stamp_b;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1865
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1866
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1867
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1868
     * Compares this <code>Calendar</code> to the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1869
     * <code>Object</code>.  The result is <code>true</code> if and only if
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1870
     * the argument is a <code>Calendar</code> object of the same calendar
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1871
     * system that represents the same time value (millisecond offset from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1872
     * <a href="#Epoch">Epoch</a>) under the same
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1873
     * <code>Calendar</code> parameters as this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1874
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1875
     * <p>The <code>Calendar</code> parameters are the values represented
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1876
     * by the <code>isLenient</code>, <code>getFirstDayOfWeek</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1877
     * <code>getMinimalDaysInFirstWeek</code> and <code>getTimeZone</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1878
     * methods. If there is any difference in those parameters
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1879
     * between the two <code>Calendar</code>s, this method returns
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1880
     * <code>false</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1881
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1882
     * <p>Use the {@link #compareTo(Calendar) compareTo} method to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1883
     * compare only the time values.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1884
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1885
     * @param obj the object to compare with.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1886
     * @return <code>true</code> if this object is equal to <code>obj</code>;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1887
     * <code>false</code> otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1888
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1889
    public boolean equals(Object obj) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1890
        if (this == obj)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1891
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1892
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1893
            Calendar that = (Calendar)obj;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1894
            return compareTo(getMillisOf(that)) == 0 &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1895
                lenient == that.lenient &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1896
                firstDayOfWeek == that.firstDayOfWeek &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1897
                minimalDaysInFirstWeek == that.minimalDaysInFirstWeek &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1898
                zone.equals(that.zone);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1899
        } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1900
            // Note: GregorianCalendar.computeTime throws
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1901
            // IllegalArgumentException if the ERA value is invalid
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1902
            // even it's in lenient mode.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1903
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1904
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1905
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1906
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1907
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1908
     * Returns a hash code for this calendar.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1909
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1910
     * @return a hash code value for this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1911
     * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1912
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1913
    public int hashCode() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1914
        // 'otheritems' represents the hash code for the previous versions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1915
        int otheritems = (lenient ? 1 : 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1916
            | (firstDayOfWeek << 1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1917
            | (minimalDaysInFirstWeek << 4)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1918
            | (zone.hashCode() << 7);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1919
        long t = getMillisOf(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1920
        return (int) t ^ (int)(t >> 32) ^ otheritems;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1921
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1922
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1923
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1924
     * Returns whether this <code>Calendar</code> represents a time
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1925
     * before the time represented by the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1926
     * <code>Object</code>. This method is equivalent to:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1927
     * <pre><blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1928
     *         compareTo(when) < 0
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1929
     * </blockquote></pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1930
     * if and only if <code>when</code> is a <code>Calendar</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1931
     * instance. Otherwise, the method returns <code>false</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1932
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1933
     * @param when the <code>Object</code> to be compared
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1934
     * @return <code>true</code> if the time of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1935
     * <code>Calendar</code> is before the time represented by
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1936
     * <code>when</code>; <code>false</code> otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1937
     * @see     #compareTo(Calendar)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1938
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1939
    public boolean before(Object when) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1940
        return when instanceof Calendar
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1941
            && compareTo((Calendar)when) < 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1942
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1943
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1944
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1945
     * Returns whether this <code>Calendar</code> represents a time
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1946
     * after the time represented by the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1947
     * <code>Object</code>. This method is equivalent to:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1948
     * <pre><blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1949
     *         compareTo(when) > 0
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1950
     * </blockquote></pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1951
     * if and only if <code>when</code> is a <code>Calendar</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1952
     * instance. Otherwise, the method returns <code>false</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1953
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1954
     * @param when the <code>Object</code> to be compared
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1955
     * @return <code>true</code> if the time of this <code>Calendar</code> is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1956
     * after the time represented by <code>when</code>; <code>false</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1957
     * otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1958
     * @see     #compareTo(Calendar)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1959
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1960
    public boolean after(Object when) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1961
        return when instanceof Calendar
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1962
            && compareTo((Calendar)when) > 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1963
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1964
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1965
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1966
     * Compares the time values (millisecond offsets from the <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1967
     * href="#Epoch">Epoch</a>) represented by two
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1968
     * <code>Calendar</code> objects.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1969
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1970
     * @param anotherCalendar the <code>Calendar</code> to be compared.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1971
     * @return the value <code>0</code> if the time represented by the argument
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1972
     * is equal to the time represented by this <code>Calendar</code>; a value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1973
     * less than <code>0</code> if the time of this <code>Calendar</code> is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1974
     * before the time represented by the argument; and a value greater than
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1975
     * <code>0</code> if the time of this <code>Calendar</code> is after the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1976
     * time represented by the argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1977
     * @exception NullPointerException if the specified <code>Calendar</code> is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1978
     *            <code>null</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1979
     * @exception IllegalArgumentException if the time value of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1980
     * specified <code>Calendar</code> object can't be obtained due to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1981
     * any invalid calendar values.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1982
     * @since   1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1983
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1984
    public int compareTo(Calendar anotherCalendar) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1985
        return compareTo(getMillisOf(anotherCalendar));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1986
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1987
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1988
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1989
     * Adds or subtracts the specified amount of time to the given calendar field,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1990
     * based on the calendar's rules. For example, to subtract 5 days from
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1991
     * the current time of the calendar, you can achieve it by calling:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1992
     * <p><code>add(Calendar.DAY_OF_MONTH, -5)</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1993
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1994
     * @param field the calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1995
     * @param amount the amount of date or time to be added to the field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1996
     * @see #roll(int,int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1997
     * @see #set(int,int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1998
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1999
    abstract public void add(int field, int amount);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2000
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2001
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2002
     * Adds or subtracts (up/down) a single unit of time on the given time
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2003
     * field without changing larger fields. For example, to roll the current
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2004
     * date up by one day, you can achieve it by calling:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2005
     * <p>roll(Calendar.DATE, true).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2006
     * When rolling on the year or Calendar.YEAR field, it will roll the year
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2007
     * value in the range between 1 and the value returned by calling
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2008
     * <code>getMaximum(Calendar.YEAR)</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2009
     * When rolling on the month or Calendar.MONTH field, other fields like
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2010
     * date might conflict and, need to be changed. For instance,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2011
     * rolling the month on the date 01/31/96 will result in 02/29/96.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2012
     * When rolling on the hour-in-day or Calendar.HOUR_OF_DAY field, it will
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2013
     * roll the hour value in the range between 0 and 23, which is zero-based.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2014
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2015
     * @param field the time field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2016
     * @param up indicates if the value of the specified time field is to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2017
     * rolled up or rolled down. Use true if rolling up, false otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2018
     * @see Calendar#add(int,int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2019
     * @see Calendar#set(int,int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2020
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2021
    abstract public void roll(int field, boolean up);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2022
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2023
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2024
     * Adds the specified (signed) amount to the specified calendar field
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2025
     * without changing larger fields.  A negative amount means to roll
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2026
     * down.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2027
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2028
     * <p>NOTE:  This default implementation on <code>Calendar</code> just repeatedly calls the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2029
     * version of {@link #roll(int,boolean) roll()} that rolls by one unit.  This may not
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2030
     * always do the right thing.  For example, if the <code>DAY_OF_MONTH</code> field is 31,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2031
     * rolling through February will leave it set to 28.  The <code>GregorianCalendar</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2032
     * version of this function takes care of this problem.  Other subclasses
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2033
     * should also provide overrides of this function that do the right thing.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2034
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2035
     * @param field the calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2036
     * @param amount the signed amount to add to the calendar <code>field</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2037
     * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2038
     * @see #roll(int,boolean)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2039
     * @see #add(int,int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2040
     * @see #set(int,int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2041
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2042
    public void roll(int field, int amount)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2043
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2044
        while (amount > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2045
            roll(field, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2046
            amount--;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2047
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2048
        while (amount < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2049
            roll(field, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2050
            amount++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2051
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2052
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2053
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2054
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2055
     * Sets the time zone with the given time zone value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2056
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2057
     * @param value the given time zone.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2058
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2059
    public void setTimeZone(TimeZone value)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2060
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2061
        zone = value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2062
        sharedZone = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2063
        /* Recompute the fields from the time using the new zone.  This also
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2064
         * works if isTimeSet is false (after a call to set()).  In that case
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2065
         * the time will be computed from the fields using the new zone, then
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2066
         * the fields will get recomputed from that.  Consider the sequence of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2067
         * calls: cal.setTimeZone(EST); cal.set(HOUR, 1); cal.setTimeZone(PST).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2068
         * Is cal set to 1 o'clock EST or 1 o'clock PST?  Answer: PST.  More
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2069
         * generally, a call to setTimeZone() affects calls to set() BEFORE AND
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2070
         * AFTER it up to the next call to complete().
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2071
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2072
        areAllFieldsSet = areFieldsSet = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2073
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2074
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2075
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2076
     * Gets the time zone.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2077
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2078
     * @return the time zone object associated with this calendar.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2079
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2080
    public TimeZone getTimeZone()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2081
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2082
        // If the TimeZone object is shared by other Calendar instances, then
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2083
        // create a clone.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2084
        if (sharedZone) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2085
            zone = (TimeZone) zone.clone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2086
            sharedZone = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2087
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2088
        return zone;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2089
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2090
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2091
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2092
     * Returns the time zone (without cloning).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2093
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2094
    TimeZone getZone() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2095
        return zone;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2096
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2097
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2098
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2099
     * Sets the sharedZone flag to <code>shared</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2100
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2101
    void setZoneShared(boolean shared) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2102
        sharedZone = shared;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2103
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2104
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2105
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2106
     * Specifies whether or not date/time interpretation is to be lenient.  With
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2107
     * lenient interpretation, a date such as "February 942, 1996" will be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2108
     * treated as being equivalent to the 941st day after February 1, 1996.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2109
     * With strict (non-lenient) interpretation, such dates will cause an exception to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2110
     * thrown. The default is lenient.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2111
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2112
     * @param lenient <code>true</code> if the lenient mode is to be turned
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2113
     * on; <code>false</code> if it is to be turned off.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2114
     * @see #isLenient()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2115
     * @see java.text.DateFormat#setLenient
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2116
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2117
    public void setLenient(boolean lenient)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2118
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2119
        this.lenient = lenient;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2120
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2121
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2122
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2123
     * Tells whether date/time interpretation is to be lenient.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2124
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2125
     * @return <code>true</code> if the interpretation mode of this calendar is lenient;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2126
     * <code>false</code> otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2127
     * @see #setLenient(boolean)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2128
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2129
    public boolean isLenient()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2130
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2131
        return lenient;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2132
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2133
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2134
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2135
     * Sets what the first day of the week is; e.g., <code>SUNDAY</code> in the U.S.,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2136
     * <code>MONDAY</code> in France.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2137
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2138
     * @param value the given first day of the week.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2139
     * @see #getFirstDayOfWeek()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2140
     * @see #getMinimalDaysInFirstWeek()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2141
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2142
    public void setFirstDayOfWeek(int value)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2143
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2144
        if (firstDayOfWeek == value) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2145
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2146
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2147
        firstDayOfWeek = value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2148
        invalidateWeekFields();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2149
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2150
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2151
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2152
     * Gets what the first day of the week is; e.g., <code>SUNDAY</code> in the U.S.,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2153
     * <code>MONDAY</code> in France.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2154
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2155
     * @return the first day of the week.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2156
     * @see #setFirstDayOfWeek(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2157
     * @see #getMinimalDaysInFirstWeek()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2158
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2159
    public int getFirstDayOfWeek()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2160
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2161
        return firstDayOfWeek;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2162
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2163
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2164
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2165
     * Sets what the minimal days required in the first week of the year are;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2166
     * For example, if the first week is defined as one that contains the first
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2167
     * day of the first month of a year, call this method with value 1. If it
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2168
     * must be a full week, use value 7.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2169
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2170
     * @param value the given minimal days required in the first week
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2171
     * of the year.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2172
     * @see #getMinimalDaysInFirstWeek()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2173
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2174
    public void setMinimalDaysInFirstWeek(int value)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2175
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2176
        if (minimalDaysInFirstWeek == value) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2177
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2178
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2179
        minimalDaysInFirstWeek = value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2180
        invalidateWeekFields();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2181
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2182
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2183
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2184
     * Gets what the minimal days required in the first week of the year are;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2185
     * e.g., if the first week is defined as one that contains the first day
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2186
     * of the first month of a year, this method returns 1. If
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2187
     * the minimal days required must be a full week, this method
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2188
     * returns 7.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2189
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2190
     * @return the minimal days required in the first week of the year.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2191
     * @see #setMinimalDaysInFirstWeek(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2192
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2193
    public int getMinimalDaysInFirstWeek()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2194
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2195
        return minimalDaysInFirstWeek;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2196
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2197
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2198
    /**
6491
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2199
     * Returns whether this {@code Calendar} supports week dates.
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2200
     *
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2201
     * <p>The default implementation of this method returns {@code false}.
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2202
     *
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2203
     * @return {@code true} if this {@code Calendar} supports week dates;
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2204
     *         {@code false} otherwise.
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2205
     * @see #getWeekYear()
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2206
     * @see #setWeekDate(int,int,int)
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2207
     * @see #getWeeksInWeekYear()
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2208
     * @since 1.7
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2209
     */
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2210
    public boolean isWeekDateSupported() {
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2211
        return false;
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2212
    }
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2213
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2214
    /**
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2215
     * Returns the week year represented by this {@code Calendar}. The
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2216
     * week year is in sync with the week cycle. The {@linkplain
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2217
     * #getFirstDayOfWeek() first day of the first week} is the first
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2218
     * day of the week year.
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2219
     *
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2220
     * <p>The default implementation of this method throws an
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2221
     * {@link UnsupportedOperationException}.
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2222
     *
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2223
     * @return the week year of this {@code Calendar}
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2224
     * @exception UnsupportedOperationException
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2225
     *            if any week year numbering isn't supported
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2226
     *            in this {@code Calendar}.
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2227
     * @see #isWeekDateSupported()
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2228
     * @see #getFirstDayOfWeek()
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2229
     * @see #getMinimalDaysInFirstWeek()
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2230
     * @since 1.7
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2231
     */
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2232
    public int getWeekYear() {
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2233
        throw new UnsupportedOperationException();
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2234
    }
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2235
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2236
    /**
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2237
     * Sets the date of this {@code Calendar} with the the given date
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2238
     * specifiers - week year, week of year, and day of week.
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2239
     *
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2240
     * <p>Unlike the {@code set} method, all of the calendar fields
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2241
     * and {@code time} values are calculated upon return.
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2242
     *
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2243
     * <p>If {@code weekOfYear} is out of the valid week-of-year range
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2244
     * in {@code weekYear}, the {@code weekYear} and {@code
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2245
     * weekOfYear} values are adjusted in lenient mode, or an {@code
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2246
     * IllegalArgumentException} is thrown in non-lenient mode.
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2247
     *
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2248
     * <p>The default implementation of this method throws an
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2249
     * {@code UnsupportedOperationException}.
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2250
     *
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2251
     * @param weekYear   the week year
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2252
     * @param weekOfYear the week number based on {@code weekYear}
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2253
     * @param dayOfWeek  the day of week value: one of the constants
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2254
     *                   for the {@link #DAY_OF_WEEK} field: {@link
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2255
     *                   #SUNDAY}, ..., {@link #SATURDAY}.
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2256
     * @exception IllegalArgumentException
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2257
     *            if any of the given date specifiers is invalid
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2258
     *            or any of the calendar fields are inconsistent
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2259
     *            with the given date specifiers in non-lenient mode
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2260
     * @exception UnsupportedOperationException
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2261
     *            if any week year numbering isn't supported in this
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2262
     *            {@code Calendar}.
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2263
     * @see #isWeekDateSupported()
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2264
     * @see #getFirstDayOfWeek()
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2265
     * @see #getMinimalDaysInFirstWeek()
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2266
     * @since 1.7
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2267
     */
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2268
    public void setWeekDate(int weekYear, int weekOfYear, int dayOfWeek) {
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2269
        throw new UnsupportedOperationException();
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2270
    }
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2271
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2272
    /**
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2273
     * Returns the number of weeks in the week year represented by this
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2274
     * {@code Calendar}.
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2275
     *
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2276
     * <p>The default implementation of this method throws an
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2277
     * {@code UnsupportedOperationException}.
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2278
     *
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2279
     * @return the number of weeks in the week year.
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2280
     * @exception UnsupportedOperationException
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2281
     *            if any week year numbering isn't supported in this
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2282
     *            {@code Calendar}.
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2283
     * @see #WEEK_OF_YEAR
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2284
     * @see #isWeekDateSupported()
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2285
     * @see #getWeekYear()
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2286
     * @see #getActualMaximum(int)
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2287
     * @since 1.7
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2288
     */
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2289
    public int getWeeksInWeekYear() {
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2290
        throw new UnsupportedOperationException();
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2291
    }
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2292
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  2293
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2294
     * Returns the minimum value for the given calendar field of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2295
     * <code>Calendar</code> instance. The minimum value is defined as
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2296
     * the smallest value returned by the {@link #get(int) get} method
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2297
     * for any possible time value.  The minimum value depends on
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2298
     * calendar system specific parameters of the instance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2299
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2300
     * @param field the calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2301
     * @return the minimum value for the given calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2302
     * @see #getMaximum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2303
     * @see #getGreatestMinimum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2304
     * @see #getLeastMaximum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2305
     * @see #getActualMinimum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2306
     * @see #getActualMaximum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2307
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2308
    abstract public int getMinimum(int field);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2309
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2310
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2311
     * Returns the maximum value for the given calendar field of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2312
     * <code>Calendar</code> instance. The maximum value is defined as
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2313
     * the largest value returned by the {@link #get(int) get} method
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2314
     * for any possible time value. The maximum value depends on
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2315
     * calendar system specific parameters of the instance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2316
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2317
     * @param field the calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2318
     * @return the maximum value for the given calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2319
     * @see #getMinimum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2320
     * @see #getGreatestMinimum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2321
     * @see #getLeastMaximum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2322
     * @see #getActualMinimum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2323
     * @see #getActualMaximum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2324
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2325
    abstract public int getMaximum(int field);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2326
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2327
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2328
     * Returns the highest minimum value for the given calendar field
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2329
     * of this <code>Calendar</code> instance. The highest minimum
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2330
     * value is defined as the largest value returned by {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2331
     * #getActualMinimum(int)} for any possible time value. The
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2332
     * greatest minimum value depends on calendar system specific
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2333
     * parameters of the instance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2334
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2335
     * @param field the calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2336
     * @return the highest minimum value for the given calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2337
     * @see #getMinimum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2338
     * @see #getMaximum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2339
     * @see #getLeastMaximum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2340
     * @see #getActualMinimum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2341
     * @see #getActualMaximum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2342
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2343
    abstract public int getGreatestMinimum(int field);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2344
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2345
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2346
     * Returns the lowest maximum value for the given calendar field
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2347
     * of this <code>Calendar</code> instance. The lowest maximum
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2348
     * value is defined as the smallest value returned by {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2349
     * #getActualMaximum(int)} for any possible time value. The least
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2350
     * maximum value depends on calendar system specific parameters of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2351
     * the instance. For example, a <code>Calendar</code> for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2352
     * Gregorian calendar system returns 28 for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2353
     * <code>DAY_OF_MONTH</code> field, because the 28th is the last
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2354
     * day of the shortest month of this calendar, February in a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2355
     * common year.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2356
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2357
     * @param field the calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2358
     * @return the lowest maximum value for the given calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2359
     * @see #getMinimum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2360
     * @see #getMaximum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2361
     * @see #getGreatestMinimum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2362
     * @see #getActualMinimum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2363
     * @see #getActualMaximum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2364
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2365
    abstract public int getLeastMaximum(int field);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2366
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2367
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2368
     * Returns the minimum value that the specified calendar field
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2369
     * could have, given the time value of this <code>Calendar</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2370
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2371
     * <p>The default implementation of this method uses an iterative
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2372
     * algorithm to determine the actual minimum value for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2373
     * calendar field. Subclasses should, if possible, override this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2374
     * with a more efficient implementation - in many cases, they can
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2375
     * simply return <code>getMinimum()</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2376
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2377
     * @param field the calendar field
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2378
     * @return the minimum of the given calendar field for the time
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2379
     * value of this <code>Calendar</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2380
     * @see #getMinimum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2381
     * @see #getMaximum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2382
     * @see #getGreatestMinimum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2383
     * @see #getLeastMaximum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2384
     * @see #getActualMaximum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2385
     * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2386
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2387
    public int getActualMinimum(int field) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2388
        int fieldValue = getGreatestMinimum(field);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2389
        int endValue = getMinimum(field);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2390
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2391
        // if we know that the minimum value is always the same, just return it
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2392
        if (fieldValue == endValue) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2393
            return fieldValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2394
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2395
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2396
        // clone the calendar so we don't mess with the real one, and set it to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2397
        // accept anything for the field values
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2398
        Calendar work = (Calendar)this.clone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2399
        work.setLenient(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2400
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2401
        // now try each value from getLeastMaximum() to getMaximum() one by one until
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2402
        // we get a value that normalizes to another value.  The last value that
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2403
        // normalizes to itself is the actual minimum for the current date
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2404
        int result = fieldValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2405
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2406
        do {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2407
            work.set(field, fieldValue);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2408
            if (work.get(field) != fieldValue) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2409
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2410
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2411
                result = fieldValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2412
                fieldValue--;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2413
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2414
        } while (fieldValue >= endValue);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2415
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2416
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2417
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2418
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2419
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2420
     * Returns the maximum value that the specified calendar field
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2421
     * could have, given the time value of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2422
     * <code>Calendar</code>. For example, the actual maximum value of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2423
     * the <code>MONTH</code> field is 12 in some years, and 13 in
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2424
     * other years in the Hebrew calendar system.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2425
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2426
     * <p>The default implementation of this method uses an iterative
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2427
     * algorithm to determine the actual maximum value for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2428
     * calendar field. Subclasses should, if possible, override this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2429
     * with a more efficient implementation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2430
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2431
     * @param field the calendar field
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2432
     * @return the maximum of the given calendar field for the time
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2433
     * value of this <code>Calendar</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2434
     * @see #getMinimum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2435
     * @see #getMaximum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2436
     * @see #getGreatestMinimum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2437
     * @see #getLeastMaximum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2438
     * @see #getActualMinimum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2439
     * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2440
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2441
    public int getActualMaximum(int field) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2442
        int fieldValue = getLeastMaximum(field);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2443
        int endValue = getMaximum(field);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2444
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2445
        // if we know that the maximum value is always the same, just return it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2446
        if (fieldValue == endValue) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2447
            return fieldValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2448
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2449
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2450
        // clone the calendar so we don't mess with the real one, and set it to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2451
        // accept anything for the field values.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2452
        Calendar work = (Calendar)this.clone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2453
        work.setLenient(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2454
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2455
        // if we're counting weeks, set the day of the week to Sunday.  We know the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2456
        // last week of a month or year will contain the first day of the week.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2457
        if (field == WEEK_OF_YEAR || field == WEEK_OF_MONTH)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2458
            work.set(DAY_OF_WEEK, firstDayOfWeek);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2459
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2460
        // now try each value from getLeastMaximum() to getMaximum() one by one until
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2461
        // we get a value that normalizes to another value.  The last value that
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2462
        // normalizes to itself is the actual maximum for the current date
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2463
        int result = fieldValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2464
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2465
        do {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2466
            work.set(field, fieldValue);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2467
            if (work.get(field) != fieldValue) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2468
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2469
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2470
                result = fieldValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2471
                fieldValue++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2472
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2473
        } while (fieldValue <= endValue);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2474
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2475
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2476
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2477
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2478
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2479
     * Creates and returns a copy of this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2480
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2481
     * @return a copy of this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2482
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2483
    public Object clone()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2484
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2485
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2486
            Calendar other = (Calendar) super.clone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2487
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2488
            other.fields = new int[FIELD_COUNT];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2489
            other.isSet = new boolean[FIELD_COUNT];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2490
            other.stamp = new int[FIELD_COUNT];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2491
            for (int i = 0; i < FIELD_COUNT; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2492
                other.fields[i] = fields[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2493
                other.stamp[i] = stamp[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2494
                other.isSet[i] = isSet[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2495
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2496
            other.zone = (TimeZone) zone.clone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2497
            return other;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2498
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2499
        catch (CloneNotSupportedException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2500
            // this shouldn't happen, since we are Cloneable
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2501
            throw new InternalError();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2502
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2503
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2504
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2505
    private static final String[] FIELD_NAME = {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2506
        "ERA", "YEAR", "MONTH", "WEEK_OF_YEAR", "WEEK_OF_MONTH", "DAY_OF_MONTH",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2507
        "DAY_OF_YEAR", "DAY_OF_WEEK", "DAY_OF_WEEK_IN_MONTH", "AM_PM", "HOUR",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2508
        "HOUR_OF_DAY", "MINUTE", "SECOND", "MILLISECOND", "ZONE_OFFSET",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2509
        "DST_OFFSET"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2510
    };
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2511
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2512
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2513
     * Returns the name of the specified calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2514
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2515
     * @param field the calendar field
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2516
     * @return the calendar field name
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2517
     * @exception IndexOutOfBoundsException if <code>field</code> is negative,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2518
     * equal to or greater then <code>FIELD_COUNT</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2519
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2520
    static final String getFieldName(int field) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2521
        return FIELD_NAME[field];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2522
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2523
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2524
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2525
     * Return a string representation of this calendar. This method
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2526
     * is intended to be used only for debugging purposes, and the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2527
     * format of the returned string may vary between implementations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2528
     * The returned string may be empty but may not be <code>null</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2529
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2530
     * @return  a string representation of this calendar.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2531
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2532
    public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2533
        // NOTE: BuddhistCalendar.toString() interprets the string
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2534
        // produced by this method so that the Gregorian year number
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2535
        // is substituted by its B.E. year value. It relies on
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2536
        // "...,YEAR=<year>,..." or "...,YEAR=?,...".
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2537
        StringBuilder buffer = new StringBuilder(800);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2538
        buffer.append(getClass().getName()).append('[');
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2539
        appendValue(buffer, "time", isTimeSet, time);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2540
        buffer.append(",areFieldsSet=").append(areFieldsSet);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2541
        buffer.append(",areAllFieldsSet=").append(areAllFieldsSet);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2542
        buffer.append(",lenient=").append(lenient);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2543
        buffer.append(",zone=").append(zone);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2544
        appendValue(buffer, ",firstDayOfWeek", true, (long) firstDayOfWeek);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2545
        appendValue(buffer, ",minimalDaysInFirstWeek", true, (long) minimalDaysInFirstWeek);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2546
        for (int i = 0; i < FIELD_COUNT; ++i) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2547
            buffer.append(',');
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2548
            appendValue(buffer, FIELD_NAME[i], isSet(i), (long) fields[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2549
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2550
        buffer.append(']');
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2551
        return buffer.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2552
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2553
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2554
    // =======================privates===============================
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2555
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2556
    private static final void appendValue(StringBuilder sb, String item, boolean valid, long value) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2557
        sb.append(item).append('=');
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2558
        if (valid) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2559
            sb.append(value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2560
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2561
            sb.append('?');
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2562
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2563
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2564
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2565
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2566
     * Both firstDayOfWeek and minimalDaysInFirstWeek are locale-dependent.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2567
     * They are used to figure out the week count for a specific date for
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2568
     * a given locale. These must be set when a Calendar is constructed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2569
     * @param desiredLocale the given locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2570
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2571
    private void setWeekCountData(Locale desiredLocale)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2572
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2573
        /* try to get the Locale data from the cache */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2574
        int[] data = cachedLocaleData.get(desiredLocale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2575
        if (data == null) {  /* cache miss */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2576
            ResourceBundle bundle = LocaleData.getCalendarData(desiredLocale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2577
            data = new int[2];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2578
            data[0] = Integer.parseInt(bundle.getString("firstDayOfWeek"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2579
            data[1] = Integer.parseInt(bundle.getString("minimalDaysInFirstWeek"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2580
            cachedLocaleData.put(desiredLocale, data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2581
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2582
        firstDayOfWeek = data[0];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2583
        minimalDaysInFirstWeek = data[1];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2584
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2585
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2586
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2587
     * Recomputes the time and updates the status fields isTimeSet
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2588
     * and areFieldsSet.  Callers should check isTimeSet and only
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2589
     * call this method if isTimeSet is false.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2590
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2591
    private void updateTime() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2592
        computeTime();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2593
        // The areFieldsSet and areAllFieldsSet values are no longer
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2594
        // controlled here (as of 1.5).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2595
        isTimeSet = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2596
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2597
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2598
    private int compareTo(long t) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2599
        long thisTime = getMillisOf(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2600
        return (thisTime > t) ? 1 : (thisTime == t) ? 0 : -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2601
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2602
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2603
    private static final long getMillisOf(Calendar calendar) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2604
        if (calendar.isTimeSet) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2605
            return calendar.time;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2606
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2607
        Calendar cal = (Calendar) calendar.clone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2608
        cal.setLenient(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2609
        return cal.getTimeInMillis();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2610
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2611
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2612
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2613
     * Adjusts the stamp[] values before nextStamp overflow. nextStamp
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2614
     * is set to the next stamp value upon the return.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2615
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2616
    private final void adjustStamp() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2617
        int max = MINIMUM_USER_STAMP;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2618
        int newStamp = MINIMUM_USER_STAMP;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2619
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2620
        for (;;) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2621
            int min = Integer.MAX_VALUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2622
            for (int i = 0; i < stamp.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2623
                int v = stamp[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2624
                if (v >= newStamp && min > v) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2625
                    min = v;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2626
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2627
                if (max < v) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2628
                    max = v;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2629
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2630
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2631
            if (max != min && min == Integer.MAX_VALUE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2632
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2633
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2634
            for (int i = 0; i < stamp.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2635
                if (stamp[i] == min) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2636
                    stamp[i] = newStamp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2637
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2638
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2639
            newStamp++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2640
            if (min == max) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2641
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2642
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2643
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2644
        nextStamp = newStamp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2645
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2646
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2647
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2648
     * Sets the WEEK_OF_MONTH and WEEK_OF_YEAR fields to new values with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2649
     * new parameter value if they have been calculated internally.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2650
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2651
    private void invalidateWeekFields()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2652
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2653
        if (stamp[WEEK_OF_MONTH] != COMPUTED &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2654
            stamp[WEEK_OF_YEAR] != COMPUTED) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2655
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2656
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2657
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2658
        // We have to check the new values of these fields after changing
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2659
        // firstDayOfWeek and/or minimalDaysInFirstWeek. If the field values
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2660
        // have been changed, then set the new values. (4822110)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2661
        Calendar cal = (Calendar) clone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2662
        cal.setLenient(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2663
        cal.clear(WEEK_OF_MONTH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2664
        cal.clear(WEEK_OF_YEAR);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2665
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2666
        if (stamp[WEEK_OF_MONTH] == COMPUTED) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2667
            int weekOfMonth = cal.get(WEEK_OF_MONTH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2668
            if (fields[WEEK_OF_MONTH] != weekOfMonth) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2669
                fields[WEEK_OF_MONTH] = weekOfMonth;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2670
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2671
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2672
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2673
        if (stamp[WEEK_OF_YEAR] == COMPUTED) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2674
            int weekOfYear = cal.get(WEEK_OF_YEAR);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2675
            if (fields[WEEK_OF_YEAR] != weekOfYear) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2676
                fields[WEEK_OF_YEAR] = weekOfYear;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2677
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2678
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2679
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2680
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2681
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2682
     * Save the state of this object to a stream (i.e., serialize it).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2683
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2684
     * Ideally, <code>Calendar</code> would only write out its state data and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2685
     * the current time, and not write any field data out, such as
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2686
     * <code>fields[]</code>, <code>isTimeSet</code>, <code>areFieldsSet</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2687
     * and <code>isSet[]</code>.  <code>nextStamp</code> also should not be part
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2688
     * of the persistent state. Unfortunately, this didn't happen before JDK 1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2689
     * shipped. To be compatible with JDK 1.1, we will always have to write out
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2690
     * the field values and state flags.  However, <code>nextStamp</code> can be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2691
     * removed from the serialization stream; this will probably happen in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2692
     * near future.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2693
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2694
    private void writeObject(ObjectOutputStream stream)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2695
         throws IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2696
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2697
        // Try to compute the time correctly, for the future (stream
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2698
        // version 2) in which we don't write out fields[] or isSet[].
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2699
        if (!isTimeSet) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2700
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2701
                updateTime();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2702
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2703
            catch (IllegalArgumentException e) {}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2704
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2705
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2706
        // If this Calendar has a ZoneInfo, save it and set a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2707
        // SimpleTimeZone equivalent (as a single DST schedule) for
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2708
        // backward compatibility.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2709
        TimeZone savedZone = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2710
        if (zone instanceof ZoneInfo) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2711
            SimpleTimeZone stz = ((ZoneInfo)zone).getLastRuleInstance();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2712
            if (stz == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2713
                stz = new SimpleTimeZone(zone.getRawOffset(), zone.getID());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2714
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2715
            savedZone = zone;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2716
            zone = stz;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2717
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2718
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2719
        // Write out the 1.1 FCS object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2720
        stream.defaultWriteObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2721
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2722
        // Write out the ZoneInfo object
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2723
        // 4802409: we write out even if it is null, a temporary workaround
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2724
        // the real fix for bug 4844924 in corba-iiop
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2725
        stream.writeObject(savedZone);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2726
        if (savedZone != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2727
            zone = savedZone;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2728
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2729
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2730
2599
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  2731
    private static class CalendarAccessControlContext {
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  2732
        private static final AccessControlContext INSTANCE;
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  2733
        static {
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  2734
            RuntimePermission perm = new RuntimePermission("accessClassInPackage.sun.util.calendar");
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  2735
            PermissionCollection perms = perm.newPermissionCollection();
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  2736
            perms.add(perm);
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  2737
            INSTANCE = new AccessControlContext(new ProtectionDomain[] {
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  2738
                                                    new ProtectionDomain(null, perms)
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  2739
                                                });
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  2740
        }
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  2741
    }
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  2742
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2743
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2744
     * Reconstitutes this object from a stream (i.e., deserialize it).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2745
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2746
    private void readObject(ObjectInputStream stream)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2747
         throws IOException, ClassNotFoundException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2748
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2749
        final ObjectInputStream input = stream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2750
        input.defaultReadObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2751
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2752
        stamp = new int[FIELD_COUNT];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2753
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2754
        // Starting with version 2 (not implemented yet), we expect that
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2755
        // fields[], isSet[], isTimeSet, and areFieldsSet may not be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2756
        // streamed out anymore.  We expect 'time' to be correct.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2757
        if (serialVersionOnStream >= 2)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2758
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2759
            isTimeSet = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2760
            if (fields == null) fields = new int[FIELD_COUNT];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2761
            if (isSet == null) isSet = new boolean[FIELD_COUNT];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2762
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2763
        else if (serialVersionOnStream >= 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2764
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2765
            for (int i=0; i<FIELD_COUNT; ++i)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2766
                stamp[i] = isSet[i] ? COMPUTED : UNSET;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2767
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2768
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2769
        serialVersionOnStream = currentSerialVersion;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2770
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2771
        // If there's a ZoneInfo object, use it for zone.
2599
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  2772
        ZoneInfo zi = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2773
        try {
2599
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  2774
            zi = AccessController.doPrivileged(
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  2775
                    new PrivilegedExceptionAction<ZoneInfo>() {
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  2776
                        public ZoneInfo run() throws Exception {
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  2777
                            return (ZoneInfo) input.readObject();
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  2778
                        }
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  2779
                    },
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  2780
                    CalendarAccessControlContext.INSTANCE);
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  2781
        } catch (PrivilegedActionException pae) {
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  2782
            Exception e = pae.getException();
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  2783
            if (!(e instanceof OptionalDataException)) {
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  2784
                if (e instanceof RuntimeException) {
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  2785
                    throw (RuntimeException) e;
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  2786
                } else if (e instanceof IOException) {
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  2787
                    throw (IOException) e;
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  2788
                } else if (e instanceof ClassNotFoundException) {
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  2789
                    throw (ClassNotFoundException) e;
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  2790
                }
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  2791
                throw new RuntimeException(e);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2792
            }
2599
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  2793
        }
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  2794
        if (zi != null) {
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  2795
            zone = zi;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2796
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2797
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2798
        // If the deserialized object has a SimpleTimeZone, try to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2799
        // replace it with a ZoneInfo equivalent (as of 1.4) in order
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2800
        // to be compatible with the SimpleTimeZone-based
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2801
        // implementation as much as possible.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2802
        if (zone instanceof SimpleTimeZone) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2803
            String id = zone.getID();
2599
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  2804
            TimeZone tz = TimeZone.getTimeZone(id);
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  2805
            if (tz != null && tz.hasSameRules(zone) && tz.getID().equals(id)) {
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  2806
                zone = tz;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2807
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2808
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2809
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2810
}