src/java.base/share/classes/java/util/Calendar.java
author jboes
Tue, 24 Sep 2019 09:43:43 +0100
changeset 58288 48e480e56aad
parent 58242 94bb65cb37d3
child 58679 9c3209ff7550
permissions -rw-r--r--
8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base Summary: Minor coding style update of javadoc tag in any file in java.base Reviewed-by: bchristi, lancea
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
54206
003cc64366da 8220249: fix headings in java.compiler
jjg
parents: 53018
diff changeset
     2
 * Copyright (c) 1996, 2019, 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;
15658
55b829ca2334 8007392: JSR 310: DateTime API Updates
sherman
parents: 15280
diff changeset
    54
import java.time.Instant;
7003
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6501
diff changeset
    55
import java.util.concurrent.ConcurrentHashMap;
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6501
diff changeset
    56
import java.util.concurrent.ConcurrentMap;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
import sun.util.BuddhistCalendar;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
import sun.util.calendar.ZoneInfo;
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
    59
import sun.util.locale.provider.CalendarDataUtility;
16481
8e30386cc014 8008576: Calendar mismatch using Host LocaleProviderAdapter
naoto
parents: 16010
diff changeset
    60
import sun.util.locale.provider.LocaleProviderAdapter;
48251
57148c79bd75 8176841: Additional Unicode Language-Tag Extensions
naoto
parents: 47216
diff changeset
    61
import sun.util.locale.provider.TimeZoneNameUtility;
16481
8e30386cc014 8008576: Calendar mismatch using Host LocaleProviderAdapter
naoto
parents: 16010
diff changeset
    62
import sun.util.spi.CalendarProvider;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
/**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
    65
 * The {@code Calendar} class is an abstract class that provides methods
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * for converting between a specific instant in time and a set of {@link
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
    67
 * #fields calendar fields} such as {@code YEAR}, {@code MONTH},
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
    68
 * {@code DAY_OF_MONTH}, {@code HOUR}, and so on, and for
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 * manipulating the calendar fields, such as getting the date of the next
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 * week. An instant in time can be represented by a millisecond value that is
44844
b2b4d98404ba 8179364: update "<a name=" in java.base module to use id attribute
jjg
parents: 34878
diff changeset
    71
 * an offset from the <a id="Epoch"><em>Epoch</em></a>, January 1, 1970
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 * 00:00:00.000 GMT (Gregorian).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 * <p>The class also provides additional fields and methods for
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 * implementing a concrete calendar system outside the package. Those
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
    76
 * fields and methods are defined as {@code protected}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 * <p>
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
    79
 * Like other locale-sensitive classes, {@code Calendar} provides a
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
    80
 * class method, {@code getInstance}, for getting a generally useful
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
    81
 * object of this type. {@code Calendar}'s {@code getInstance} method
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
    82
 * returns a {@code Calendar} object whose
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 * calendar fields have been initialized with the current date and time:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 * <blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
 *     Calendar rightNow = Calendar.getInstance();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 * </blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
 *
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
    90
 * <p>A {@code Calendar} object can produce all the calendar field values
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
 * needed to implement the date-time formatting for a particular language and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
 * calendar style (for example, Japanese-Gregorian, Japanese-Traditional).
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
    93
 * {@code Calendar} defines the range of values returned by
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
 * certain calendar fields, as well as their meaning.  For example,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
 * the first month of the calendar system has value <code>MONTH ==
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
 * JANUARY</code> for all calendars.  Other values are defined by the
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
    97
 * concrete subclass, such as {@code ERA}.  See individual field
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
 * documentation and subclass documentation for details.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
 *
54206
003cc64366da 8220249: fix headings in java.compiler
jjg
parents: 53018
diff changeset
   100
 * <h2>Getting and Setting Calendar Field Values</h2>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
 *
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   102
 * <p>The calendar field values can be set by calling the {@code set}
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   103
 * methods. Any field values set in a {@code Calendar} will not be
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
 * interpreted until it needs to calculate its time value (milliseconds from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
 * the Epoch) or values of the calendar fields. Calling the
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   106
 * {@code get}, {@code getTimeInMillis}, {@code getTime},
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   107
 * {@code add} and {@code roll} involves such calculation.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
 *
54206
003cc64366da 8220249: fix headings in java.compiler
jjg
parents: 53018
diff changeset
   109
 * <h3>Leniency</h3>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
 *
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   111
 * <p>{@code Calendar} has two modes for interpreting the calendar
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
 * fields, <em>lenient</em> and <em>non-lenient</em>.  When a
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   113
 * {@code Calendar} is in lenient mode, it accepts a wider range of
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   114
 * calendar field values than it produces.  When a {@code Calendar}
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   115
 * recomputes calendar field values for return by {@code get()}, all of
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
 * the calendar fields are normalized. For example, a lenient
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   117
 * {@code GregorianCalendar} interprets {@code MONTH == JANUARY},
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   118
 * {@code DAY_OF_MONTH == 32} as February 1.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   120
 * <p>When a {@code Calendar} is in non-lenient mode, it throws an
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
 * exception if there is any inconsistency in its calendar fields. For
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   122
 * example, a {@code GregorianCalendar} always produces
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   123
 * {@code DAY_OF_MONTH} values between 1 and the length of the month. A
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   124
 * non-lenient {@code GregorianCalendar} throws an exception upon
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
 * calculating its time or calendar field values if any out-of-range field
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
 * value has been set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
 *
54206
003cc64366da 8220249: fix headings in java.compiler
jjg
parents: 53018
diff changeset
   128
 * <h3><a id="first_week">First Week</a></h3>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
 *
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   130
 * {@code Calendar} defines a locale-specific seven day week using two
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
 * parameters: the first day of the week and the minimal days in first week
48251
57148c79bd75 8176841: Additional Unicode Language-Tag Extensions
naoto
parents: 47216
diff changeset
   132
 * (from 1 to 7).  These numbers are taken from the locale resource data or the
57148c79bd75 8176841: Additional Unicode Language-Tag Extensions
naoto
parents: 47216
diff changeset
   133
 * locale itself when a {@code Calendar} is constructed. If the designated
57148c79bd75 8176841: Additional Unicode Language-Tag Extensions
naoto
parents: 47216
diff changeset
   134
 * locale contains "fw" and/or "rg" <a href="./Locale.html#def_locale_extension">
57148c79bd75 8176841: Additional Unicode Language-Tag Extensions
naoto
parents: 47216
diff changeset
   135
 * Unicode extensions</a>, the first day of the week will be obtained according to
57148c79bd75 8176841: Additional Unicode Language-Tag Extensions
naoto
parents: 47216
diff changeset
   136
 * those extensions. If both "fw" and "rg" are specified, the value from the "fw"
57148c79bd75 8176841: Additional Unicode Language-Tag Extensions
naoto
parents: 47216
diff changeset
   137
 * extension supersedes the implicit one from the "rg" extension.
57148c79bd75 8176841: Additional Unicode Language-Tag Extensions
naoto
parents: 47216
diff changeset
   138
 * They may also be specified explicitly through the methods for setting their
57148c79bd75 8176841: Additional Unicode Language-Tag Extensions
naoto
parents: 47216
diff changeset
   139
 * values.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
 *
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   141
 * <p>When setting or getting the {@code WEEK_OF_MONTH} or
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   142
 * {@code WEEK_OF_YEAR} fields, {@code Calendar} must determine the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
 * first week of the month or year as a reference point.  The first week of a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
 * month or year is defined as the earliest seven day period beginning on
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   145
 * {@code getFirstDayOfWeek()} and containing at least
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   146
 * {@code getMinimalDaysInFirstWeek()} days of that month or year.  Weeks
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
 * numbered ..., -1, 0 precede the first week; weeks numbered 2, 3,... follow
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   148
 * it.  Note that the normalized numbering returned by {@code get()} may be
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   149
 * different.  For example, a specific {@code Calendar} subclass may
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
 * designate the week before week 1 of a year as week <code><i>n</i></code> of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
 * the previous year.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
 *
54206
003cc64366da 8220249: fix headings in java.compiler
jjg
parents: 53018
diff changeset
   153
 * <h3>Calendar Fields Resolution</h3>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
 * When computing a date and time from the calendar fields, there
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
 * may be insufficient information for the computation (such as only
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
 * year and month with no day of month), or there may be inconsistent
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
 * information (such as Tuesday, July 15, 1996 (Gregorian) -- July 15,
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   159
 * 1996 is actually a Monday). {@code Calendar} will resolve
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
 * calendar field values to determine the date and time in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
 * following way.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
 *
44844
b2b4d98404ba 8179364: update "<a name=" in java.base module to use id attribute
jjg
parents: 34878
diff changeset
   163
 * <p><a id="resolution">If there is any conflict in calendar field values,
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   164
 * {@code Calendar} gives priorities to calendar fields that have been set
15280
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
   165
 * more recently.</a> The following are the default combinations of the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
 * calendar fields. The most recent combination, as determined by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
 * most recently set single field, will be used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
 *
44844
b2b4d98404ba 8179364: update "<a name=" in java.base module to use id attribute
jjg
parents: 34878
diff changeset
   169
 * <p><a id="date_resolution">For the date fields</a>:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
 * <blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
 * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
 * YEAR + MONTH + DAY_OF_MONTH
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
 * YEAR + MONTH + WEEK_OF_MONTH + DAY_OF_WEEK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
 * YEAR + MONTH + DAY_OF_WEEK_IN_MONTH + DAY_OF_WEEK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
 * YEAR + DAY_OF_YEAR
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
 * YEAR + DAY_OF_WEEK + WEEK_OF_YEAR
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
 * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
 *
44844
b2b4d98404ba 8179364: update "<a name=" in java.base module to use id attribute
jjg
parents: 34878
diff changeset
   179
 * <a id="time_resolution">For the time of day fields</a>:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
 * <blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
 * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
 * HOUR_OF_DAY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
 * AM_PM + HOUR
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
 * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
 * <p>If there are any calendar fields whose values haven't been set in the selected
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   187
 * field combination, {@code Calendar} uses their default values. The default
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
 * value of each field may vary by concrete calendar systems. For example, in
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   189
 * {@code GregorianCalendar}, the default of a field is the same as that
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   190
 * of the start of the Epoch: i.e., {@code YEAR = 1970}, <code>MONTH =
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   191
 * JANUARY</code>, {@code DAY_OF_MONTH = 1}, etc.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
 * <strong>Note:</strong> There are certain possible ambiguities in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
 * interpretation of certain singular times, which are resolved in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
 * following ways:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
 * <ol>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
 *     <li> 23:59 is the last minute of the day and 00:00 is the first
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
 *          minute of the next day. Thus, 23:59 on Dec 31, 1999 &lt; 00:00 on
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
 *          Jan 1, 2000 &lt; 00:01 on Jan 1, 2000.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
 *     <li> Although historically not precise, midnight also belongs to "am",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
 *          and noon belongs to "pm", so on the same day,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
 *          12:00 am (midnight) &lt; 12:01 am, and 12:00 pm (noon) &lt; 12:01 pm
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
 * </ol>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
 * The date or time format strings are not part of the definition of a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
 * calendar, as those must be modifiable or overridable by the user at
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
 * runtime. Use {@link DateFormat}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
 * to format dates.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
 *
54206
003cc64366da 8220249: fix headings in java.compiler
jjg
parents: 53018
diff changeset
   213
 * <h3>Field Manipulation</h3>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
 * The calendar fields can be changed using three methods:
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   216
 * {@code set()}, {@code add()}, and {@code roll()}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
 *
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   218
 * <p><strong>{@code set(f, value)}</strong> changes calendar field
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   219
 * {@code f} to {@code value}.  In addition, it sets an
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   220
 * internal member variable to indicate that calendar field {@code f} has
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   221
 * been changed. Although calendar field {@code f} is changed immediately,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
 * the calendar's time value in milliseconds is not recomputed until the next call to
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   223
 * {@code get()}, {@code getTime()}, {@code getTimeInMillis()},
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   224
 * {@code add()}, or {@code roll()} is made. Thus, multiple calls to
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   225
 * {@code set()} do not trigger multiple, unnecessary
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
 * computations. As a result of changing a calendar field using
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   227
 * {@code set()}, other calendar fields may also change, depending on the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
 * calendar field, the calendar field value, and the calendar system. In addition,
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   229
 * {@code get(f)} will not necessarily return {@code value} set by
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   230
 * the call to the {@code set} method
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
 * after the calendar fields have been recomputed. The specifics are determined by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
 * the concrete calendar class.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
 *
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   234
 * <p><em>Example</em>: Consider a {@code GregorianCalendar}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
 * originally set to August 31, 1999. Calling <code>set(Calendar.MONTH,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
 * Calendar.SEPTEMBER)</code> sets the date to September 31,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
 * 1999. This is a temporary internal representation that resolves to
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   238
 * October 1, 1999 if {@code getTime()}is then called. However, a
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   239
 * call to {@code set(Calendar.DAY_OF_MONTH, 30)} before the call to
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   240
 * {@code getTime()} sets the date to September 30, 1999, since
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   241
 * no recomputation occurs after {@code set()} itself.</p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
 *
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   243
 * <p><strong>{@code add(f, delta)}</strong> adds {@code delta}
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   244
 * to field {@code f}.  This is equivalent to calling <code>set(f,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
 * get(f) + delta)</code> with two adjustments:</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
 * <blockquote>
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   248
 *   <p><strong>Add rule 1</strong>. The value of field {@code f}
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   249
 *   after the call minus the value of field {@code f} before the
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   250
 *   call is {@code delta}, modulo any overflow that has occurred in
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   251
 *   field {@code f}. Overflow occurs when a field value exceeds its
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
 *   range and, as a result, the next larger field is incremented or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
 *   decremented and the field value is adjusted back into its range.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
 *   <p><strong>Add rule 2</strong>. If a smaller field is expected to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
 *   invariant, but it is impossible for it to be equal to its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
 *   prior value because of changes in its minimum or maximum after field
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   258
 *   {@code f} is changed or other constraints, such as time zone
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
 *   offset changes, then its value is adjusted to be as close
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
 *   as possible to its expected value. A smaller field represents a
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   261
 *   smaller unit of time. {@code HOUR} is a smaller field than
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   262
 *   {@code DAY_OF_MONTH}. No adjustment is made to smaller fields
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
 *   that are not expected to be invariant. The calendar system
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
 *   determines what fields are expected to be invariant.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
 * </blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
 *
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   267
 * <p>In addition, unlike {@code set()}, {@code add()} forces
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
 * an immediate recomputation of the calendar's milliseconds and all
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
 * fields.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
 *
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   271
 * <p><em>Example</em>: Consider a {@code GregorianCalendar}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
 * originally set to August 31, 1999. Calling <code>add(Calendar.MONTH,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
 * 13)</code> sets the calendar to September 30, 2000. <strong>Add rule
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   274
 * 1</strong> sets the {@code MONTH} field to September, since
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
 * adding 13 months to August gives September of the next year. Since
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   276
 * {@code DAY_OF_MONTH} cannot be 31 in September in a
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   277
 * {@code GregorianCalendar}, <strong>add rule 2</strong> sets the
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   278
 * {@code DAY_OF_MONTH} to 30, the closest possible value. Although
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   279
 * it is a smaller field, {@code DAY_OF_WEEK} is not adjusted by
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
 * rule 2, since it is expected to change when the month changes in a
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   281
 * {@code GregorianCalendar}.</p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
 *
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   283
 * <p><strong>{@code roll(f, delta)}</strong> adds
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   284
 * {@code delta} to field {@code f} without changing larger
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   285
 * fields. This is equivalent to calling {@code add(f, delta)} with
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
 * the following adjustment:</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
 * <blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
 *   <p><strong>Roll rule</strong>. Larger fields are unchanged after the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
 *   call. A larger field represents a larger unit of
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   291
 *   time. {@code DAY_OF_MONTH} is a larger field than
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   292
 *   {@code HOUR}.</p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
 * </blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
 * <p><em>Example</em>: See {@link java.util.GregorianCalendar#roll(int, int)}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
 * <p><strong>Usage model</strong>. To motivate the behavior of
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   298
 * {@code add()} and {@code roll()}, consider a user interface
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
 * component with increment and decrement buttons for the month, day, and
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   300
 * year, and an underlying {@code GregorianCalendar}. If the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
 * interface reads January 31, 1999 and the user presses the month
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
 * increment button, what should it read? If the underlying
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   303
 * implementation uses {@code set()}, it might read March 3, 1999. A
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
 * better result would be February 28, 1999. Furthermore, if the user
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
 * presses the month increment button again, it should read March 31,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
 * 1999, not March 28, 1999. By saving the original date and using either
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   307
 * {@code add()} or {@code roll()}, depending on whether larger
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
 * fields should be affected, the user interface can behave as most users
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
 * will intuitively expect.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
 * @see          java.lang.System#currentTimeMillis()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
 * @see          Date
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
 * @see          GregorianCalendar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
 * @see          TimeZone
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
 * @see          java.text.DateFormat
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
 * @author Mark Davis, David Goldsmith, Chen-Lieh Huang, Alan Liu
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 22078
diff changeset
   317
 * @since 1.1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
public abstract class Calendar implements Serializable, Cloneable, Comparable<Calendar> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
    // Data flow in Calendar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
    // ---------------------
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
    // The current time is represented in two ways by Calendar: as UTC
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
    // milliseconds from the epoch (1 January 1970 0:00 UTC), and as local
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
    // fields such as MONTH, HOUR, AM_PM, etc.  It is possible to compute the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
    // millis from the fields, and vice versa.  The data needed to do this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
    // conversion is encapsulated by a TimeZone object owned by the Calendar.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
    // The data provided by the TimeZone object may also be overridden if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
    // user sets the ZONE_OFFSET and/or DST_OFFSET fields directly. The class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
    // keeps track of what information was most recently set by the caller, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
    // uses that to compute any other information as needed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
    // If the user sets the fields using set(), the data flow is as follows.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
    // This is implemented by the Calendar subclass's computeTime() method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
    // During this process, certain fields may be ignored.  The disambiguation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
    // algorithm for resolving which fields to pay attention to is described
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
    // in the class documentation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
    //   local fields (YEAR, MONTH, DATE, HOUR, MINUTE, etc.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
    //           |
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
    //           | Using Calendar-specific algorithm
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
    //           V
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
    //   local standard millis
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
    //           |
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
    //           | Using TimeZone or user-set ZONE_OFFSET / DST_OFFSET
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
    //           V
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
    //   UTC millis (in time data member)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
    // If the user sets the UTC millis using setTime() or setTimeInMillis(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
    // the data flow is as follows.  This is implemented by the Calendar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
    // subclass's computeFields() method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
    //   UTC millis (in time data member)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
    //           |
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
    //           | Using TimeZone getOffset()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
    //           V
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
    //   local standard millis
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
    //           |
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
    //           | Using Calendar-specific algorithm
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
    //           V
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
    //   local fields (YEAR, MONTH, DATE, HOUR, MINUTE, etc.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
    // In general, a round trip from fields, through local and UTC millis, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
    // back out to fields is made when necessary.  This is implemented by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
    // complete() method.  Resolving a partial set of fields into a UTC millis
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
    // value allows all remaining fields to be generated from that value.  If
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
    // the Calendar is lenient, the fields are also renormalized to standard
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
    // ranges when they are regenerated.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   372
     * Field number for {@code get} and {@code set} indicating the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
     * era, e.g., AD or BC in the Julian calendar. This is a calendar-specific
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
     * value; see subclass documentation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
     * @see GregorianCalendar#AD
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
     * @see GregorianCalendar#BC
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   379
    public static final int ERA = 0;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   382
     * Field number for {@code get} and {@code set} indicating the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
     * year. This is a calendar-specific value; see subclass documentation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   385
    public static final int YEAR = 1;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   388
     * Field number for {@code get} and {@code set} indicating the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
     * month. This is a calendar-specific value. The first month of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
     * the year in the Gregorian and Julian calendars is
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   391
     * {@code JANUARY} which is 0; the last depends on the number
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
     * of months in a year.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
     * @see #JANUARY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
     * @see #FEBRUARY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
     * @see #MARCH
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
     * @see #APRIL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
     * @see #MAY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
     * @see #JUNE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
     * @see #JULY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
     * @see #AUGUST
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
     * @see #SEPTEMBER
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
     * @see #OCTOBER
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
     * @see #NOVEMBER
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
     * @see #DECEMBER
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
     * @see #UNDECIMBER
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   408
    public static final int MONTH = 2;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   411
     * Field number for {@code get} and {@code set} indicating the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
     * week number within the current year.  The first week of the year, as
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   413
     * defined by {@code getFirstDayOfWeek()} and
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   414
     * {@code getMinimalDaysInFirstWeek()}, has value 1.  Subclasses define
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   415
     * the value of {@code WEEK_OF_YEAR} for days before the first week of
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
     * the year.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
     * @see #getFirstDayOfWeek
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
     * @see #getMinimalDaysInFirstWeek
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   421
    public static final int WEEK_OF_YEAR = 3;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   424
     * Field number for {@code get} and {@code set} indicating the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
     * week number within the current month.  The first week of the month, as
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   426
     * defined by {@code getFirstDayOfWeek()} and
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   427
     * {@code getMinimalDaysInFirstWeek()}, has value 1.  Subclasses define
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   428
     * the value of {@code WEEK_OF_MONTH} for days before the first week of
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
     * the month.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
     * @see #getFirstDayOfWeek
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
     * @see #getMinimalDaysInFirstWeek
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   434
    public static final int WEEK_OF_MONTH = 4;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   437
     * Field number for {@code get} and {@code set} indicating the
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   438
     * day of the month. This is a synonym for {@code DAY_OF_MONTH}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
     * The first day of the month has value 1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
     * @see #DAY_OF_MONTH
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   443
    public static final int DATE = 5;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   446
     * Field number for {@code get} and {@code set} indicating the
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   447
     * day of the month. This is a synonym for {@code DATE}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
     * The first day of the month has value 1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
     * @see #DATE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   452
    public static final int DAY_OF_MONTH = 5;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   455
     * Field number for {@code get} and {@code set} indicating the day
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
     * number within the current year.  The first day of the year has value 1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   458
    public static final int DAY_OF_YEAR = 6;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   461
     * Field number for {@code get} and {@code set} indicating the day
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   462
     * of the week.  This field takes values {@code SUNDAY},
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   463
     * {@code MONDAY}, {@code TUESDAY}, {@code WEDNESDAY},
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   464
     * {@code THURSDAY}, {@code FRIDAY}, and {@code SATURDAY}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
     * @see #SUNDAY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
     * @see #MONDAY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
     * @see #TUESDAY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
     * @see #WEDNESDAY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
     * @see #THURSDAY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
     * @see #FRIDAY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
     * @see #SATURDAY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   474
    public static final int DAY_OF_WEEK = 7;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   477
     * Field number for {@code get} and {@code set} indicating the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
     * ordinal number of the day of the week within the current month. Together
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   479
     * with the {@code DAY_OF_WEEK} field, this uniquely specifies a day
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   480
     * within a month.  Unlike {@code WEEK_OF_MONTH} and
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   481
     * {@code WEEK_OF_YEAR}, this field's value does <em>not</em> depend on
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   482
     * {@code getFirstDayOfWeek()} or
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   483
     * {@code getMinimalDaysInFirstWeek()}.  {@code DAY_OF_MONTH 1}
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   484
     * through {@code 7} always correspond to <code>DAY_OF_WEEK_IN_MONTH
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   485
     * 1</code>; {@code 8} through {@code 14} correspond to
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   486
     * {@code DAY_OF_WEEK_IN_MONTH 2}, and so on.
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   487
     * {@code DAY_OF_WEEK_IN_MONTH 0} indicates the week before
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   488
     * {@code DAY_OF_WEEK_IN_MONTH 1}.  Negative values count back from the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
     * end of the month, so the last Sunday of a month is specified as
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   490
     * {@code DAY_OF_WEEK = SUNDAY, DAY_OF_WEEK_IN_MONTH = -1}.  Because
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
     * negative values count backward they will usually be aligned differently
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
     * within the month than positive values.  For example, if a month has 31
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   493
     * days, {@code DAY_OF_WEEK_IN_MONTH -1} will overlap
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   494
     * {@code DAY_OF_WEEK_IN_MONTH 5} and the end of {@code 4}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
     * @see #DAY_OF_WEEK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
     * @see #WEEK_OF_MONTH
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   499
    public static final int DAY_OF_WEEK_IN_MONTH = 8;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   502
     * Field number for {@code get} and {@code set} indicating
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   503
     * whether the {@code HOUR} is before or after noon.
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   504
     * E.g., at 10:04:15.250 PM the {@code AM_PM} is {@code PM}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
     * @see #AM
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
     * @see #PM
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
     * @see #HOUR
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   510
    public static final int AM_PM = 9;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   513
     * Field number for {@code get} and {@code set} indicating the
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   514
     * hour of the morning or afternoon. {@code HOUR} is used for the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
     * 12-hour clock (0 - 11). Noon and midnight are represented by 0, not by 12.
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   516
     * E.g., at 10:04:15.250 PM the {@code HOUR} is 10.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
     * @see #AM_PM
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
     * @see #HOUR_OF_DAY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   521
    public static final int HOUR = 10;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   524
     * Field number for {@code get} and {@code set} indicating the
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   525
     * hour of the day. {@code HOUR_OF_DAY} is used for the 24-hour clock.
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   526
     * E.g., at 10:04:15.250 PM the {@code HOUR_OF_DAY} is 22.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
     * @see #HOUR
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   530
    public static final int HOUR_OF_DAY = 11;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   533
     * Field number for {@code get} and {@code set} indicating the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
     * minute within the hour.
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   535
     * E.g., at 10:04:15.250 PM the {@code MINUTE} is 4.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   537
    public static final int MINUTE = 12;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   540
     * Field number for {@code get} and {@code set} indicating the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
     * second within the minute.
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   542
     * E.g., at 10:04:15.250 PM the {@code SECOND} is 15.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   544
    public static final int SECOND = 13;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   547
     * Field number for {@code get} and {@code set} indicating the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
     * millisecond within the second.
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   549
     * E.g., at 10:04:15.250 PM the {@code MILLISECOND} is 250.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   551
    public static final int MILLISECOND = 14;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   554
     * Field number for {@code get} and {@code set}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
     * indicating the raw offset from GMT in milliseconds.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
     * This field reflects the correct GMT offset value of the time
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   558
     * zone of this {@code Calendar} if the
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   559
     * {@code TimeZone} implementation subclass supports
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
     * historical GMT offset changes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   562
    public static final int ZONE_OFFSET = 15;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   565
     * Field number for {@code get} and {@code set} indicating the
8521
ab64b8d109b8 6955047: (tz) javadoc for TimeZone.getDisplayName(boolean daylight, int style, Locale locale) is not clear
okutsu
parents: 7003
diff changeset
   566
     * daylight saving offset in milliseconds.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
     * This field reflects the correct daylight saving offset value of
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   569
     * the time zone of this {@code Calendar} if the
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   570
     * {@code TimeZone} implementation subclass supports
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
     * historical Daylight Saving Time schedule changes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   573
    public static final int DST_OFFSET = 16;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   576
     * The number of distinct fields recognized by {@code get} and {@code set}.
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   577
     * Field numbers range from {@code 0..FIELD_COUNT-1}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   579
    public static final int FIELD_COUNT = 17;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
     * Value of the {@link #DAY_OF_WEEK} field indicating
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
     * Sunday.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   585
    public static final int SUNDAY = 1;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
     * Value of the {@link #DAY_OF_WEEK} field indicating
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
     * Monday.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   591
    public static final int MONDAY = 2;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
     * Value of the {@link #DAY_OF_WEEK} field indicating
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
     * Tuesday.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   597
    public static final int TUESDAY = 3;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
     * Value of the {@link #DAY_OF_WEEK} field indicating
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
     * Wednesday.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   603
    public static final int WEDNESDAY = 4;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
     * Value of the {@link #DAY_OF_WEEK} field indicating
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
     * Thursday.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   609
    public static final int THURSDAY = 5;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
     * Value of the {@link #DAY_OF_WEEK} field indicating
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
     * Friday.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   615
    public static final int FRIDAY = 6;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
     * Value of the {@link #DAY_OF_WEEK} field indicating
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
     * Saturday.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   621
    public static final int SATURDAY = 7;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
     * Value of the {@link #MONTH} field indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
     * first month of the year in the Gregorian and Julian calendars.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   627
    public static final int JANUARY = 0;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
     * Value of the {@link #MONTH} field indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
     * second month of the year in the Gregorian and Julian calendars.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   633
    public static final int FEBRUARY = 1;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
     * Value of the {@link #MONTH} field indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
     * third month of the year in the Gregorian and Julian calendars.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   639
    public static final int MARCH = 2;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
     * Value of the {@link #MONTH} field indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
     * fourth month of the year in the Gregorian and Julian calendars.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   645
    public static final int APRIL = 3;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
     * Value of the {@link #MONTH} field indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
     * fifth month of the year in the Gregorian and Julian calendars.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   651
    public static final int MAY = 4;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
     * Value of the {@link #MONTH} field indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
     * sixth month of the year in the Gregorian and Julian calendars.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   657
    public static final int JUNE = 5;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
     * Value of the {@link #MONTH} field indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
     * seventh month of the year in the Gregorian and Julian calendars.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   663
    public static final int JULY = 6;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
     * Value of the {@link #MONTH} field indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
     * eighth month of the year in the Gregorian and Julian calendars.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   669
    public static final int AUGUST = 7;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
     * Value of the {@link #MONTH} field indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
     * ninth month of the year in the Gregorian and Julian calendars.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   675
    public static final int SEPTEMBER = 8;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
     * Value of the {@link #MONTH} field indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
     * tenth month of the year in the Gregorian and Julian calendars.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   681
    public static final int OCTOBER = 9;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
     * Value of the {@link #MONTH} field indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
     * eleventh month of the year in the Gregorian and Julian calendars.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   687
    public static final int NOVEMBER = 10;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
     * Value of the {@link #MONTH} field indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
     * twelfth month of the year in the Gregorian and Julian calendars.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   693
    public static final int DECEMBER = 11;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
     * Value of the {@link #MONTH} field indicating the
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   697
     * thirteenth month of the year. Although {@code GregorianCalendar}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
     * does not use this value, lunar calendars do.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   700
    public static final int UNDECIMBER = 12;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
     * Value of the {@link #AM_PM} field indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
     * period of the day from midnight to just before noon.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   706
    public static final int AM = 0;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
     * Value of the {@link #AM_PM} field indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
     * period of the day from noon to just before midnight.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   712
    public static final int PM = 1;
2
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 #getDisplayNames(int, int, Locale)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
     * getDisplayNames} indicating names in all styles, such as
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
     * "January" and "Jan".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
     *
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   719
     * @see #SHORT_FORMAT
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   720
     * @see #LONG_FORMAT
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   721
     * @see #SHORT_STANDALONE
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   722
     * @see #LONG_STANDALONE
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
     * @see #SHORT
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
     * @see #LONG
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
    public static final int ALL_STYLES = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   729
    static final int STANDALONE_MASK = 0x8000;
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   730
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
     * A style specifier for {@link #getDisplayName(int, int, Locale)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
     * getDisplayName} and {@link #getDisplayNames(int, int, Locale)
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   734
     * getDisplayNames} equivalent to {@link #SHORT_FORMAT}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
     *
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   736
     * @see #SHORT_STANDALONE
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
     * @see #LONG
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
    public static final int SHORT = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
     * A style specifier for {@link #getDisplayName(int, int, Locale)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
     * getDisplayName} and {@link #getDisplayNames(int, int, Locale)
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   745
     * getDisplayNames} equivalent to {@link #LONG_FORMAT}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
     *
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   747
     * @see #LONG_STANDALONE
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
     * @see #SHORT
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
    public static final int LONG = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   753
    /**
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   754
     * A style specifier for {@link #getDisplayName(int, int, Locale)
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   755
     * getDisplayName} and {@link #getDisplayNames(int, int, Locale)
14765
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
   756
     * getDisplayNames} indicating a narrow name used for format. Narrow names
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
   757
     * are typically single character strings, such as "M" for Monday.
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
   758
     *
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
   759
     * @see #NARROW_STANDALONE
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
   760
     * @see #SHORT_FORMAT
14928
afdc82e5403a 8005561: typo in Calendar
okutsu
parents: 14765
diff changeset
   761
     * @see #LONG_FORMAT
14765
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
   762
     * @since 1.8
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
   763
     */
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
   764
    public static final int NARROW_FORMAT = 4;
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
   765
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
   766
    /**
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
   767
     * A style specifier for {@link #getDisplayName(int, int, Locale)
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
   768
     * getDisplayName} and {@link #getDisplayNames(int, int, Locale)
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
   769
     * getDisplayNames} indicating a narrow name independently. Narrow names
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
   770
     * are typically single character strings, such as "M" for Monday.
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
   771
     *
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
   772
     * @see #NARROW_FORMAT
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
   773
     * @see #SHORT_STANDALONE
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
   774
     * @see #LONG_STANDALONE
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
   775
     * @since 1.8
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
   776
     */
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
   777
    public static final int NARROW_STANDALONE = NARROW_FORMAT | STANDALONE_MASK;
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
   778
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
   779
    /**
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
   780
     * A style specifier for {@link #getDisplayName(int, int, Locale)
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
   781
     * getDisplayName} and {@link #getDisplayNames(int, int, Locale)
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   782
     * getDisplayNames} indicating a short name used for format.
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   783
     *
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   784
     * @see #SHORT_STANDALONE
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   785
     * @see #LONG_FORMAT
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   786
     * @see #LONG_STANDALONE
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   787
     * @since 1.8
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   788
     */
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   789
    public static final int SHORT_FORMAT = 1;
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   790
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   791
    /**
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   792
     * A style specifier for {@link #getDisplayName(int, int, Locale)
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   793
     * getDisplayName} and {@link #getDisplayNames(int, int, Locale)
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   794
     * getDisplayNames} indicating a long name used for format.
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   795
     *
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   796
     * @see #LONG_STANDALONE
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   797
     * @see #SHORT_FORMAT
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   798
     * @see #SHORT_STANDALONE
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   799
     * @since 1.8
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   800
     */
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   801
    public static final int LONG_FORMAT = 2;
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   802
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   803
    /**
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   804
     * A style specifier for {@link #getDisplayName(int, int, Locale)
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   805
     * getDisplayName} and {@link #getDisplayNames(int, int, Locale)
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   806
     * getDisplayNames} indicating a short name used independently,
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   807
     * such as a month abbreviation as calendar headers.
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   808
     *
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   809
     * @see #SHORT_FORMAT
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   810
     * @see #LONG_FORMAT
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   811
     * @see #LONG_STANDALONE
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   812
     * @since 1.8
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   813
     */
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   814
    public static final int SHORT_STANDALONE = SHORT | STANDALONE_MASK;
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   815
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   816
    /**
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   817
     * A style specifier for {@link #getDisplayName(int, int, Locale)
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   818
     * getDisplayName} and {@link #getDisplayNames(int, int, Locale)
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   819
     * getDisplayNames} indicating a long name used independently,
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   820
     * such as a month name as calendar headers.
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   821
     *
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   822
     * @see #LONG_FORMAT
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   823
     * @see #SHORT_FORMAT
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   824
     * @see #SHORT_STANDALONE
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   825
     * @since 1.8
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   826
     */
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   827
    public static final int LONG_STANDALONE = LONG | STANDALONE_MASK;
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   828
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
    // Internal notes:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
    // Calendar contains two kinds of time representations: current "time" in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
    // milliseconds, and a set of calendar "fields" representing the current time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
    // The two representations are usually in sync, but can get out of sync
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
    // as follows.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
    // 1. Initially, no fields are set, and the time is invalid.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
    // 2. If the time is set, all fields are computed and in sync.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
    // 3. If a single field is set, the time is invalid.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
    // Recomputation of the time and fields happens when the object needs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
    // to return a result to the user, or use a result for a computation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
     * The calendar field values for the currently set time for this calendar.
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   842
     * This is an array of {@code FIELD_COUNT} integers, with index values
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   843
     * {@code ERA} through {@code DST_OFFSET}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
     */
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   846
    @SuppressWarnings("ProtectedField")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
    protected int           fields[];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
     * The flags which tell if a specified calendar field for the calendar is set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
     * A new object has no fields set.  After the first call to a method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
     * which generates the fields, they all remain set after that.
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   853
     * This is an array of {@code FIELD_COUNT} booleans, with index values
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   854
     * {@code ERA} through {@code DST_OFFSET}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
     */
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   857
    @SuppressWarnings("ProtectedField")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
    protected boolean       isSet[];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
     * Pseudo-time-stamps which specify when each field was set. There
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
     * are two special values, UNSET and COMPUTED. Values from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
     * MINIMUM_USER_SET to Integer.MAX_VALUE are legal user set values.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   865
    private transient int   stamp[];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
     * The currently set time for this calendar, expressed in milliseconds after
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
     * January 1, 1970, 0:00:00 GMT.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
     * @see #isTimeSet
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
     */
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   873
    @SuppressWarnings("ProtectedField")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
    protected long          time;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
90ce3da70b43 Initial load
duke
parents:
diff changeset
   876
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   877
     * True if then the value of {@code time} is valid.
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   878
     * The time is made invalid by a change to an item of {@code field[]}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
     * @see #time
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
     */
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   882
    @SuppressWarnings("ProtectedField")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
    protected boolean       isTimeSet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   886
     * True if {@code fields[]} are in sync with the currently set time.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
     * If false, then the next attempt to get the value of a field will
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
     * force a recomputation of all fields from the current value of
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   889
     * {@code time}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
     */
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
   892
    @SuppressWarnings("ProtectedField")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
    protected boolean       areFieldsSet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
     * True if all fields have been set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
    transient boolean       areAllFieldsSet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   902
     * {@code True} if this calendar allows out-of-range field values during computation
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   903
     * of {@code time} from {@code fields[]}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   904
     * @see #setLenient
90ce3da70b43 Initial load
duke
parents:
diff changeset
   905
     * @see #isLenient
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
    private boolean         lenient = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   911
     * The {@code TimeZone} used by this calendar. {@code Calendar}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
     * uses the time zone data to translate between locale and GMT time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
    private TimeZone        zone;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   918
     * {@code True} if zone references to a shared TimeZone object.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
   920
    private transient boolean sharedZone = false;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   923
     * The first day of the week, with possible values {@code SUNDAY},
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   924
     * {@code MONDAY}, etc.  This is a locale-dependent value.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   927
    private int             firstDayOfWeek;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
90ce3da70b43 Initial load
duke
parents:
diff changeset
   929
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
     * The number of days required for the first week in a month or year,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
     * with possible values from 1 to 7.  This is a locale-dependent value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   932
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
    private int             minimalDaysInFirstWeek;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
     * Cache to hold the firstDayOfWeek and minimalDaysInFirstWeek
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
     * of a Locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   939
     */
7003
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6501
diff changeset
   940
    private static final ConcurrentMap<Locale, int[]> cachedLocaleData
12448
b95438b17098 7157893: Warnings Cleanup in java.util.*
khazra
parents: 11681
diff changeset
   941
        = new ConcurrentHashMap<>(3);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   942
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
    // Special values of stamp[]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   945
     * The corresponding fields[] has no value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   946
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
    private static final int        UNSET = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
     * The value of the corresponding fields[] has been calculated internally.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
    private static final int        COMPUTED = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
     * The value of the corresponding fields[] has been set externally. Stamp
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
     * values which are greater than 1 represents the (pseudo) time when the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
     * corresponding fields[] value was set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
    private static final int        MINIMUM_USER_STAMP = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
     * The mask value that represents all of the fields.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
    static final int ALL_FIELDS = (1 << FIELD_COUNT) - 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   967
     * The next available value for {@code stamp[]}, an internal array.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
     * This actually should not be written out to the stream, and will probably
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
     * be removed from the stream in the near future.  In the meantime,
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   970
     * a value of {@code MINIMUM_USER_STAMP} should be used.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
    private int             nextStamp = MINIMUM_USER_STAMP;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
    // the internal serial version which says which version was written
90ce3da70b43 Initial load
duke
parents:
diff changeset
   976
    // - 0 (default) for version up to JDK 1.1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
    // - 1 for version from JDK 1.1.6, which writes a correct 'time' value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   978
    //     as well as compatible values for other fields.  This is a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   979
    //     transitional format.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   980
    // - 2 (not implemented yet) a future version, in which fields[],
90ce3da70b43 Initial load
duke
parents:
diff changeset
   981
    //     areFieldsSet, and isTimeSet become transient, and isSet[] is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
    //     removed. In JDK 1.1.6 we write a format compatible with version 2.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
    static final int        currentSerialVersion = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   984
90ce3da70b43 Initial load
duke
parents:
diff changeset
   985
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   986
     * The version of the serialized data on the stream.  Possible values:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   987
     * <dl>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
     * <dt><b>0</b> or not present on stream</dt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   989
     * <dd>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   990
     * JDK 1.1.5 or earlier.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   991
     * </dd>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   992
     * <dt><b>1</b></dt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   993
     * <dd>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   994
     * JDK 1.1.6 or later.  Writes a correct 'time' value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   995
     * as well as compatible values for other fields.  This is a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   996
     * transitional format.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   997
     * </dd>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   998
     * </dl>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   999
     * When streaming out this class, the most recent format
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  1000
     * and the highest allowable {@code serialVersionOnStream}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1001
     * is written.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1002
     * @serial
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 22078
diff changeset
  1003
     * @since 1.1.6
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1004
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1005
    private int             serialVersionOnStream = currentSerialVersion;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1006
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1007
    // Proclaim serialization compatibility with JDK 1.1
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 57549
diff changeset
  1008
    @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1009
    static final long       serialVersionUID = -1807547505821590642L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1010
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1011
    // Mask values for calendar fields
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  1012
    @SuppressWarnings("PointlessBitwiseExpression")
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
  1013
    static final int ERA_MASK           = (1 << ERA);
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
  1014
    static final int YEAR_MASK          = (1 << YEAR);
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
  1015
    static final int MONTH_MASK         = (1 << MONTH);
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
  1016
    static final int WEEK_OF_YEAR_MASK  = (1 << WEEK_OF_YEAR);
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
  1017
    static final int WEEK_OF_MONTH_MASK = (1 << WEEK_OF_MONTH);
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
  1018
    static final int DAY_OF_MONTH_MASK  = (1 << DAY_OF_MONTH);
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
  1019
    static final int DATE_MASK          = DAY_OF_MONTH_MASK;
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
  1020
    static final int DAY_OF_YEAR_MASK   = (1 << DAY_OF_YEAR);
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
  1021
    static final int DAY_OF_WEEK_MASK   = (1 << DAY_OF_WEEK);
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
  1022
    static final int DAY_OF_WEEK_IN_MONTH_MASK  = (1 << DAY_OF_WEEK_IN_MONTH);
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
  1023
    static final int AM_PM_MASK         = (1 << AM_PM);
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
  1024
    static final int HOUR_MASK          = (1 << HOUR);
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
  1025
    static final int HOUR_OF_DAY_MASK   = (1 << HOUR_OF_DAY);
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
  1026
    static final int MINUTE_MASK        = (1 << MINUTE);
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
  1027
    static final int SECOND_MASK        = (1 << SECOND);
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
  1028
    static final int MILLISECOND_MASK   = (1 << MILLISECOND);
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
  1029
    static final int ZONE_OFFSET_MASK   = (1 << ZONE_OFFSET);
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
  1030
    static final int DST_OFFSET_MASK    = (1 << DST_OFFSET);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1031
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1032
    /**
15280
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1033
     * {@code Calendar.Builder} is used for creating a {@code Calendar} from
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1034
     * various date-time parameters.
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1035
     *
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1036
     * <p>There are two ways to set a {@code Calendar} to a date-time value. One
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1037
     * is to set the instant parameter to a millisecond offset from the <a
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1038
     * href="Calendar.html#Epoch">Epoch</a>. The other is to set individual
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1039
     * field parameters, such as {@link Calendar#YEAR YEAR}, to their desired
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1040
     * values. These two ways can't be mixed. Trying to set both the instant and
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1041
     * individual fields will cause an {@link IllegalStateException} to be
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1042
     * thrown. However, it is permitted to override previous values of the
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1043
     * instant or field parameters.
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1044
     *
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1045
     * <p>If no enough field parameters are given for determining date and/or
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1046
     * time, calendar specific default values are used when building a
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1047
     * {@code Calendar}. For example, if the {@link Calendar#YEAR YEAR} value
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1048
     * isn't given for the Gregorian calendar, 1970 will be used. If there are
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1049
     * any conflicts among field parameters, the <a
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1050
     * href="Calendar.html#resolution"> resolution rules</a> are applied.
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1051
     * Therefore, the order of field setting matters.
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1052
     *
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1053
     * <p>In addition to the date-time parameters,
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1054
     * the {@linkplain #setLocale(Locale) locale},
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1055
     * {@linkplain #setTimeZone(TimeZone) time zone},
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1056
     * {@linkplain #setWeekDefinition(int, int) week definition}, and
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1057
     * {@linkplain #setLenient(boolean) leniency mode} parameters can be set.
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1058
     *
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1059
     * <p><b>Examples</b>
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1060
     * <p>The following are sample usages. Sample code assumes that the
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1061
     * {@code Calendar} constants are statically imported.
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1062
     *
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1063
     * <p>The following code produces a {@code Calendar} with date 2012-12-31
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1064
     * (Gregorian) because Monday is the first day of a week with the <a
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1065
     * href="GregorianCalendar.html#iso8601_compatible_setting"> ISO 8601
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1066
     * compatible week parameters</a>.
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1067
     * <pre>
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1068
     *   Calendar cal = new Calendar.Builder().setCalendarType("iso8601")
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1069
     *                        .setWeekDate(2013, 1, MONDAY).build();</pre>
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1070
     * <p>The following code produces a Japanese {@code Calendar} with date
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1071
     * 1989-01-08 (Gregorian), assuming that the default {@link Calendar#ERA ERA}
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1072
     * is <em>Heisei</em> that started on that day.
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1073
     * <pre>
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1074
     *   Calendar cal = new Calendar.Builder().setCalendarType("japanese")
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1075
     *                        .setFields(YEAR, 1, DAY_OF_YEAR, 1).build();</pre>
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1076
     *
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1077
     * @since 1.8
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1078
     * @see Calendar#getInstance(TimeZone, Locale)
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1079
     * @see Calendar#fields
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1080
     */
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1081
    public static class Builder {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1082
        private static final int NFIELDS = FIELD_COUNT + 1; // +1 for WEEK_YEAR
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1083
        private static final int WEEK_YEAR = FIELD_COUNT;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1084
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1085
        private long instant;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1086
        // Calendar.stamp[] (lower half) and Calendar.fields[] (upper half) combined
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1087
        private int[] fields;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1088
        // Pseudo timestamp starting from MINIMUM_USER_STAMP.
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1089
        // (COMPUTED is used to indicate that the instant has been set.)
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1090
        private int nextStamp;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1091
        // maxFieldIndex keeps the max index of fields which have been set.
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1092
        // (WEEK_YEAR is never included.)
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1093
        private int maxFieldIndex;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1094
        private String type;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1095
        private TimeZone zone;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1096
        private boolean lenient = true;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1097
        private Locale locale;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1098
        private int firstDayOfWeek, minimalDaysInFirstWeek;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1099
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1100
        /**
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1101
         * Constructs a {@code Calendar.Builder}.
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1102
         */
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1103
        public Builder() {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1104
        }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1105
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1106
        /**
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1107
         * Sets the instant parameter to the given {@code instant} value that is
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1108
         * a millisecond offset from <a href="Calendar.html#Epoch">the
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1109
         * Epoch</a>.
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1110
         *
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1111
         * @param instant a millisecond offset from the Epoch
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1112
         * @return this {@code Calendar.Builder}
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1113
         * @throws IllegalStateException if any of the field parameters have
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1114
         *                               already been set
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1115
         * @see Calendar#setTime(Date)
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1116
         * @see Calendar#setTimeInMillis(long)
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1117
         * @see Calendar#time
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1118
         */
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1119
        public Builder setInstant(long instant) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1120
            if (fields != null) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1121
                throw new IllegalStateException();
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1122
            }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1123
            this.instant = instant;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1124
            nextStamp = COMPUTED;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1125
            return this;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1126
        }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1127
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1128
        /**
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1129
         * Sets the instant parameter to the {@code instant} value given by a
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1130
         * {@link Date}. This method is equivalent to a call to
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1131
         * {@link #setInstant(long) setInstant(instant.getTime())}.
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1132
         *
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1133
         * @param instant a {@code Date} representing a millisecond offset from
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1134
         *                the Epoch
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1135
         * @return this {@code Calendar.Builder}
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1136
         * @throws NullPointerException  if {@code instant} is {@code null}
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1137
         * @throws IllegalStateException if any of the field parameters have
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1138
         *                               already been set
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1139
         * @see Calendar#setTime(Date)
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1140
         * @see Calendar#setTimeInMillis(long)
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1141
         * @see Calendar#time
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1142
         */
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1143
        public Builder setInstant(Date instant) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1144
            return setInstant(instant.getTime()); // NPE if instant == null
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1145
        }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1146
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1147
        /**
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1148
         * Sets the {@code field} parameter to the given {@code value}.
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1149
         * {@code field} is an index to the {@link Calendar#fields}, such as
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1150
         * {@link Calendar#DAY_OF_MONTH DAY_OF_MONTH}. Field value validation is
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1151
         * not performed in this method. Any out of range values are either
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1152
         * normalized in lenient mode or detected as an invalid value in
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1153
         * non-lenient mode when building a {@code Calendar}.
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1154
         *
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1155
         * @param field an index to the {@code Calendar} fields
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1156
         * @param value the field value
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1157
         * @return this {@code Calendar.Builder}
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1158
         * @throws IllegalArgumentException if {@code field} is invalid
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1159
         * @throws IllegalStateException if the instant value has already been set,
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1160
         *                      or if fields have been set too many
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1161
         *                      (approximately {@link Integer#MAX_VALUE}) times.
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1162
         * @see Calendar#set(int, int)
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1163
         */
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1164
        public Builder set(int field, int value) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1165
            // Note: WEEK_YEAR can't be set with this method.
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1166
            if (field < 0 || field >= FIELD_COUNT) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1167
                throw new IllegalArgumentException("field is invalid");
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1168
            }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1169
            if (isInstantSet()) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1170
                throw new IllegalStateException("instant has been set");
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1171
            }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1172
            allocateFields();
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1173
            internalSet(field, value);
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1174
            return this;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1175
        }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1176
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1177
        /**
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1178
         * Sets field parameters to their values given by
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1179
         * {@code fieldValuePairs} that are pairs of a field and its value.
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1180
         * For example,
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1181
         * <pre>
30655
d83f50188ca9 8080422: some docs cleanup for core libs
avstepan
parents: 29986
diff changeset
  1182
         *   setFields(Calendar.YEAR, 2013,
15280
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1183
         *             Calendar.MONTH, Calendar.DECEMBER,
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1184
         *             Calendar.DAY_OF_MONTH, 23);</pre>
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1185
         * is equivalent to the sequence of the following
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1186
         * {@link #set(int, int) set} calls:
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1187
         * <pre>
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1188
         *   set(Calendar.YEAR, 2013)
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1189
         *   .set(Calendar.MONTH, Calendar.DECEMBER)
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1190
         *   .set(Calendar.DAY_OF_MONTH, 23);</pre>
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1191
         *
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1192
         * @param fieldValuePairs field-value pairs
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1193
         * @return this {@code Calendar.Builder}
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1194
         * @throws NullPointerException if {@code fieldValuePairs} is {@code null}
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1195
         * @throws IllegalArgumentException if any of fields are invalid,
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1196
         *             or if {@code fieldValuePairs.length} is an odd number.
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1197
         * @throws IllegalStateException    if the instant value has been set,
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1198
         *             or if fields have been set too many (approximately
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1199
         *             {@link Integer#MAX_VALUE}) times.
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1200
         */
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1201
        public Builder setFields(int... fieldValuePairs) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1202
            int len = fieldValuePairs.length;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1203
            if ((len % 2) != 0) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1204
                throw new IllegalArgumentException();
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1205
            }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1206
            if (isInstantSet()) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1207
                throw new IllegalStateException("instant has been set");
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1208
            }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1209
            if ((nextStamp + len / 2) < 0) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1210
                throw new IllegalStateException("stamp counter overflow");
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1211
            }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1212
            allocateFields();
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1213
            for (int i = 0; i < len; ) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1214
                int field = fieldValuePairs[i++];
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1215
                // Note: WEEK_YEAR can't be set with this method.
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1216
                if (field < 0 || field >= FIELD_COUNT) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1217
                    throw new IllegalArgumentException("field is invalid");
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1218
                }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1219
                internalSet(field, fieldValuePairs[i++]);
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1220
            }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1221
            return this;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1222
        }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1223
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1224
        /**
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1225
         * Sets the date field parameters to the values given by {@code year},
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1226
         * {@code month}, and {@code dayOfMonth}. This method is equivalent to
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1227
         * a call to:
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1228
         * <pre>
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1229
         *   setFields(Calendar.YEAR, year,
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1230
         *             Calendar.MONTH, month,
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1231
         *             Calendar.DAY_OF_MONTH, dayOfMonth);</pre>
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1232
         *
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1233
         * @param year       the {@link Calendar#YEAR YEAR} value
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1234
         * @param month      the {@link Calendar#MONTH MONTH} value
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1235
         *                   (the month numbering is <em>0-based</em>).
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1236
         * @param dayOfMonth the {@link Calendar#DAY_OF_MONTH DAY_OF_MONTH} value
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1237
         * @return this {@code Calendar.Builder}
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1238
         */
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1239
        public Builder setDate(int year, int month, int dayOfMonth) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1240
            return setFields(YEAR, year, MONTH, month, DAY_OF_MONTH, dayOfMonth);
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1241
        }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1242
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1243
        /**
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1244
         * Sets the time of day field parameters to the values given by
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1245
         * {@code hourOfDay}, {@code minute}, and {@code second}. This method is
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1246
         * equivalent to a call to:
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1247
         * <pre>
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1248
         *   setTimeOfDay(hourOfDay, minute, second, 0);</pre>
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1249
         *
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1250
         * @param hourOfDay the {@link Calendar#HOUR_OF_DAY HOUR_OF_DAY} value
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1251
         *                  (24-hour clock)
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1252
         * @param minute    the {@link Calendar#MINUTE MINUTE} value
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1253
         * @param second    the {@link Calendar#SECOND SECOND} value
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1254
         * @return this {@code Calendar.Builder}
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1255
         */
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1256
        public Builder setTimeOfDay(int hourOfDay, int minute, int second) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1257
            return setTimeOfDay(hourOfDay, minute, second, 0);
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1258
        }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1259
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1260
        /**
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1261
         * Sets the time of day field parameters to the values given by
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1262
         * {@code hourOfDay}, {@code minute}, {@code second}, and
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1263
         * {@code millis}. This method is equivalent to a call to:
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1264
         * <pre>
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1265
         *   setFields(Calendar.HOUR_OF_DAY, hourOfDay,
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1266
         *             Calendar.MINUTE, minute,
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1267
         *             Calendar.SECOND, second,
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1268
         *             Calendar.MILLISECOND, millis);</pre>
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1269
         *
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1270
         * @param hourOfDay the {@link Calendar#HOUR_OF_DAY HOUR_OF_DAY} value
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1271
         *                  (24-hour clock)
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1272
         * @param minute    the {@link Calendar#MINUTE MINUTE} value
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1273
         * @param second    the {@link Calendar#SECOND SECOND} value
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1274
         * @param millis    the {@link Calendar#MILLISECOND MILLISECOND} value
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1275
         * @return this {@code Calendar.Builder}
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1276
         */
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1277
        public Builder setTimeOfDay(int hourOfDay, int minute, int second, int millis) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1278
            return setFields(HOUR_OF_DAY, hourOfDay, MINUTE, minute,
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1279
                             SECOND, second, MILLISECOND, millis);
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1280
        }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1281
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1282
        /**
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1283
         * Sets the week-based date parameters to the values with the given
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1284
         * date specifiers - week year, week of year, and day of week.
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1285
         *
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1286
         * <p>If the specified calendar doesn't support week dates, the
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1287
         * {@link #build() build} method will throw an {@link IllegalArgumentException}.
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1288
         *
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1289
         * @param weekYear   the week year
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1290
         * @param weekOfYear the week number based on {@code weekYear}
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1291
         * @param dayOfWeek  the day of week value: one of the constants
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1292
         *     for the {@link Calendar#DAY_OF_WEEK DAY_OF_WEEK} field:
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1293
         *     {@link Calendar#SUNDAY SUNDAY}, ..., {@link Calendar#SATURDAY SATURDAY}.
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1294
         * @return this {@code Calendar.Builder}
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1295
         * @see Calendar#setWeekDate(int, int, int)
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1296
         * @see Calendar#isWeekDateSupported()
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1297
         */
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1298
        public Builder setWeekDate(int weekYear, int weekOfYear, int dayOfWeek) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1299
            allocateFields();
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1300
            internalSet(WEEK_YEAR, weekYear);
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1301
            internalSet(WEEK_OF_YEAR, weekOfYear);
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1302
            internalSet(DAY_OF_WEEK, dayOfWeek);
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1303
            return this;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1304
        }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1305
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1306
        /**
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1307
         * Sets the time zone parameter to the given {@code zone}. If no time
30655
d83f50188ca9 8080422: some docs cleanup for core libs
avstepan
parents: 29986
diff changeset
  1308
         * zone parameter is given to this {@code Calendar.Builder}, the
15280
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1309
         * {@linkplain TimeZone#getDefault() default
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  1310
         * {@code TimeZone}} will be used in the {@link #build() build}
15280
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1311
         * method.
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1312
         *
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1313
         * @param zone the {@link TimeZone}
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1314
         * @return this {@code Calendar.Builder}
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1315
         * @throws NullPointerException if {@code zone} is {@code null}
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1316
         * @see Calendar#setTimeZone(TimeZone)
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1317
         */
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1318
        public Builder setTimeZone(TimeZone zone) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1319
            if (zone == null) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1320
                throw new NullPointerException();
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1321
            }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1322
            this.zone = zone;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1323
            return this;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1324
        }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1325
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1326
        /**
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1327
         * Sets the lenient mode parameter to the value given by {@code lenient}.
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1328
         * If no lenient parameter is given to this {@code Calendar.Builder},
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1329
         * lenient mode will be used in the {@link #build() build} method.
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1330
         *
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1331
         * @param lenient {@code true} for lenient mode;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1332
         *                {@code false} for non-lenient mode
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1333
         * @return this {@code Calendar.Builder}
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1334
         * @see Calendar#setLenient(boolean)
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1335
         */
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1336
        public Builder setLenient(boolean lenient) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1337
            this.lenient = lenient;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1338
            return this;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1339
        }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1340
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1341
        /**
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1342
         * Sets the calendar type parameter to the given {@code type}. The
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1343
         * calendar type given by this method has precedence over any explicit
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1344
         * or implicit calendar type given by the
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1345
         * {@linkplain #setLocale(Locale) locale}.
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1346
         *
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1347
         * <p>In addition to the available calendar types returned by the
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1348
         * {@link Calendar#getAvailableCalendarTypes() Calendar.getAvailableCalendarTypes}
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1349
         * method, {@code "gregorian"} and {@code "iso8601"} as aliases of
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1350
         * {@code "gregory"} can be used with this method.
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1351
         *
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1352
         * @param type the calendar type
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1353
         * @return this {@code Calendar.Builder}
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1354
         * @throws NullPointerException if {@code type} is {@code null}
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1355
         * @throws IllegalArgumentException if {@code type} is unknown
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1356
         * @throws IllegalStateException if another calendar type has already been set
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1357
         * @see Calendar#getCalendarType()
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1358
         * @see Calendar#getAvailableCalendarTypes()
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1359
         */
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1360
        public Builder setCalendarType(String type) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1361
            if (type.equals("gregorian")) { // NPE if type == null
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1362
                type = "gregory";
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1363
            }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1364
            if (!Calendar.getAvailableCalendarTypes().contains(type)
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1365
                    && !type.equals("iso8601")) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1366
                throw new IllegalArgumentException("unknown calendar type: " + type);
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1367
            }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1368
            if (this.type == null) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1369
                this.type = type;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1370
            } else {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1371
                if (!this.type.equals(type)) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1372
                    throw new IllegalStateException("calendar type override");
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1373
                }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1374
            }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1375
            return this;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1376
        }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1377
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1378
        /**
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1379
         * Sets the locale parameter to the given {@code locale}. If no locale
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1380
         * is given to this {@code Calendar.Builder}, the {@linkplain
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  1381
         * Locale#getDefault(Locale.Category) default {@code Locale}}
15280
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1382
         * for {@link Locale.Category#FORMAT} will be used.
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1383
         *
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1384
         * <p>If no calendar type is explicitly given by a call to the
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1385
         * {@link #setCalendarType(String) setCalendarType} method,
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1386
         * the {@code Locale} value is used to determine what type of
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1387
         * {@code Calendar} to be built.
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1388
         *
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1389
         * <p>If no week definition parameters are explicitly given by a call to
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1390
         * the {@link #setWeekDefinition(int,int) setWeekDefinition} method, the
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1391
         * {@code Locale}'s default values are used.
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1392
         *
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1393
         * @param locale the {@link Locale}
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1394
         * @throws NullPointerException if {@code locale} is {@code null}
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1395
         * @return this {@code Calendar.Builder}
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1396
         * @see Calendar#getInstance(Locale)
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1397
         */
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1398
        public Builder setLocale(Locale locale) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1399
            if (locale == null) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1400
                throw new NullPointerException();
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1401
            }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1402
            this.locale = locale;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1403
            return this;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1404
        }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1405
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1406
        /**
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1407
         * Sets the week definition parameters to the values given by
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1408
         * {@code firstDayOfWeek} and {@code minimalDaysInFirstWeek} that are
47004
b7e72fc752c9 8186684: Fix broken links in java.base API docs
jjg
parents: 45376
diff changeset
  1409
         * used to determine the <a href="Calendar.html#first_week">first
15280
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1410
         * week</a> of a year. The parameters given by this method have
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1411
         * precedence over the default values given by the
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1412
         * {@linkplain #setLocale(Locale) locale}.
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1413
         *
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1414
         * @param firstDayOfWeek the first day of a week; one of
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1415
         *                       {@link Calendar#SUNDAY} to {@link Calendar#SATURDAY}
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1416
         * @param minimalDaysInFirstWeek the minimal number of days in the first
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1417
         *                               week (1..7)
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1418
         * @return this {@code Calendar.Builder}
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1419
         * @throws IllegalArgumentException if {@code firstDayOfWeek} or
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1420
         *                                  {@code minimalDaysInFirstWeek} is invalid
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1421
         * @see Calendar#getFirstDayOfWeek()
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1422
         * @see Calendar#getMinimalDaysInFirstWeek()
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1423
         */
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1424
        public Builder setWeekDefinition(int firstDayOfWeek, int minimalDaysInFirstWeek) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1425
            if (!isValidWeekParameter(firstDayOfWeek)
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1426
                    || !isValidWeekParameter(minimalDaysInFirstWeek)) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1427
                throw new IllegalArgumentException();
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1428
            }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1429
            this.firstDayOfWeek = firstDayOfWeek;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1430
            this.minimalDaysInFirstWeek = minimalDaysInFirstWeek;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1431
            return this;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1432
        }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1433
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1434
        /**
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1435
         * Returns a {@code Calendar} built from the parameters set by the
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1436
         * setter methods. The calendar type given by the {@link #setCalendarType(String)
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1437
         * setCalendarType} method or the {@linkplain #setLocale(Locale) locale} is
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1438
         * used to determine what {@code Calendar} to be created. If no explicit
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1439
         * calendar type is given, the locale's default calendar is created.
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1440
         *
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1441
         * <p>If the calendar type is {@code "iso8601"}, the
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1442
         * {@linkplain GregorianCalendar#setGregorianChange(Date) Gregorian change date}
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1443
         * of a {@link GregorianCalendar} is set to {@code Date(Long.MIN_VALUE)}
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1444
         * to be the <em>proleptic</em> Gregorian calendar. Its week definition
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1445
         * parameters are also set to be <a
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1446
         * href="GregorianCalendar.html#iso8601_compatible_setting">compatible
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1447
         * with the ISO 8601 standard</a>. Note that the
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1448
         * {@link GregorianCalendar#getCalendarType() getCalendarType} method of
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1449
         * a {@code GregorianCalendar} created with {@code "iso8601"} returns
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1450
         * {@code "gregory"}.
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1451
         *
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1452
         * <p>The default values are used for locale and time zone if these
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1453
         * parameters haven't been given explicitly.
48251
57148c79bd75 8176841: Additional Unicode Language-Tag Extensions
naoto
parents: 47216
diff changeset
  1454
         * <p>
57148c79bd75 8176841: Additional Unicode Language-Tag Extensions
naoto
parents: 47216
diff changeset
  1455
         * If the locale contains the time zone with "tz"
57148c79bd75 8176841: Additional Unicode Language-Tag Extensions
naoto
parents: 47216
diff changeset
  1456
         * <a href="Locale.html#def_locale_extension">Unicode extension</a>,
57148c79bd75 8176841: Additional Unicode Language-Tag Extensions
naoto
parents: 47216
diff changeset
  1457
         * and time zone hasn't been given explicitly, time zone in the locale
57148c79bd75 8176841: Additional Unicode Language-Tag Extensions
naoto
parents: 47216
diff changeset
  1458
         * is used.
15280
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1459
         *
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1460
         * <p>Any out of range field values are either normalized in lenient
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1461
         * mode or detected as an invalid value in non-lenient mode.
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1462
         *
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1463
         * @return a {@code Calendar} built with parameters of this {@code
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1464
         *         Calendar.Builder}
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1465
         * @throws IllegalArgumentException if the calendar type is unknown, or
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1466
         *             if any invalid field values are given in non-lenient mode, or
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1467
         *             if a week date is given for the calendar type that doesn't
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1468
         *             support week dates.
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1469
         * @see Calendar#getInstance(TimeZone, Locale)
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1470
         * @see Locale#getDefault(Locale.Category)
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1471
         * @see TimeZone#getDefault()
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1472
         */
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1473
        public Calendar build() {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1474
            if (locale == null) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1475
                locale = Locale.getDefault();
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1476
            }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1477
            if (zone == null) {
48251
57148c79bd75 8176841: Additional Unicode Language-Tag Extensions
naoto
parents: 47216
diff changeset
  1478
                zone = defaultTimeZone(locale);
15280
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1479
            }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1480
            Calendar cal;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1481
            if (type == null) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1482
                type = locale.getUnicodeLocaleType("ca");
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1483
            }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1484
            if (type == null) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1485
                if (locale.getCountry() == "TH"
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1486
                    && locale.getLanguage() == "th") {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1487
                    type = "buddhist";
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1488
                } else {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1489
                    type = "gregory";
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1490
                }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1491
            }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1492
            switch (type) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1493
            case "gregory":
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1494
                cal = new GregorianCalendar(zone, locale, true);
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1495
                break;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1496
            case "iso8601":
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1497
                GregorianCalendar gcal = new GregorianCalendar(zone, locale, true);
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1498
                // make gcal a proleptic Gregorian
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1499
                gcal.setGregorianChange(new Date(Long.MIN_VALUE));
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1500
                // and week definition to be compatible with ISO 8601
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1501
                setWeekDefinition(MONDAY, 4);
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1502
                cal = gcal;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1503
                break;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1504
            case "buddhist":
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1505
                cal = new BuddhistCalendar(zone, locale);
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1506
                cal.clear();
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1507
                break;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1508
            case "japanese":
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1509
                cal = new JapaneseImperialCalendar(zone, locale, true);
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1510
                break;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1511
            default:
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1512
                throw new IllegalArgumentException("unknown calendar type: " + type);
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1513
            }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1514
            cal.setLenient(lenient);
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1515
            if (firstDayOfWeek != 0) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1516
                cal.setFirstDayOfWeek(firstDayOfWeek);
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1517
                cal.setMinimalDaysInFirstWeek(minimalDaysInFirstWeek);
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1518
            }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1519
            if (isInstantSet()) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1520
                cal.setTimeInMillis(instant);
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1521
                cal.complete();
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1522
                return cal;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1523
            }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1524
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1525
            if (fields != null) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1526
                boolean weekDate = isSet(WEEK_YEAR)
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1527
                                       && fields[WEEK_YEAR] > fields[YEAR];
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1528
                if (weekDate && !cal.isWeekDateSupported()) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1529
                    throw new IllegalArgumentException("week date is unsupported by " + type);
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1530
                }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1531
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1532
                // Set the fields from the min stamp to the max stamp so that
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1533
                // the fields resolution works in the Calendar.
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1534
                for (int stamp = MINIMUM_USER_STAMP; stamp < nextStamp; stamp++) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1535
                    for (int index = 0; index <= maxFieldIndex; index++) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1536
                        if (fields[index] == stamp) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1537
                            cal.set(index, fields[NFIELDS + index]);
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1538
                            break;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1539
                        }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1540
                    }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1541
                }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1542
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1543
                if (weekDate) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1544
                    int weekOfYear = isSet(WEEK_OF_YEAR) ? fields[NFIELDS + WEEK_OF_YEAR] : 1;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1545
                    int dayOfWeek = isSet(DAY_OF_WEEK)
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1546
                                    ? fields[NFIELDS + DAY_OF_WEEK] : cal.getFirstDayOfWeek();
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1547
                    cal.setWeekDate(fields[NFIELDS + WEEK_YEAR], weekOfYear, dayOfWeek);
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1548
                }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1549
                cal.complete();
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1550
            }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1551
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1552
            return cal;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1553
        }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1554
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1555
        private void allocateFields() {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1556
            if (fields == null) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1557
                fields = new int[NFIELDS * 2];
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1558
                nextStamp = MINIMUM_USER_STAMP;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1559
                maxFieldIndex = -1;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1560
            }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1561
        }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1562
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1563
        private void internalSet(int field, int value) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1564
            fields[field] = nextStamp++;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1565
            if (nextStamp < 0) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1566
                throw new IllegalStateException("stamp counter overflow");
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1567
            }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1568
            fields[NFIELDS + field] = value;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1569
            if (field > maxFieldIndex && field < WEEK_YEAR) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1570
                maxFieldIndex = field;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1571
            }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1572
        }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1573
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1574
        private boolean isInstantSet() {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1575
            return nextStamp == COMPUTED;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1576
        }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1577
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1578
        private boolean isSet(int index) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1579
            return fields != null && fields[index] > UNSET;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1580
        }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1581
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1582
        private boolean isValidWeekParameter(int value) {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1583
            return value > 0 && value <= 7;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1584
        }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1585
    }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1586
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1587
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1588
     * Constructs a Calendar with the default time zone
16010
2727163b5df5 7092447: Clarify the default locale used in each locale sensitive operation
naoto
parents: 15658
diff changeset
  1589
     * and the default {@link java.util.Locale.Category#FORMAT FORMAT}
2727163b5df5 7092447: Clarify the default locale used in each locale sensitive operation
naoto
parents: 15658
diff changeset
  1590
     * locale.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1591
     * @see     TimeZone#getDefault
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1592
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1593
    protected Calendar()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1594
    {
6489
9e7015635425 4700857: RFE: separating user locale and user interface locale
naoto
parents: 5506
diff changeset
  1595
        this(TimeZone.getDefaultRef(), Locale.getDefault(Locale.Category.FORMAT));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1596
        sharedZone = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1597
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1598
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1599
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1600
     * Constructs a calendar with the specified time zone and locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1601
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1602
     * @param zone the time zone to use
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1603
     * @param aLocale the locale for the week data
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1604
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1605
    protected Calendar(TimeZone zone, Locale aLocale)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1606
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1607
        fields = new int[FIELD_COUNT];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1608
        isSet = new boolean[FIELD_COUNT];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1609
        stamp = new int[FIELD_COUNT];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1610
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1611
        this.zone = zone;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1612
        setWeekCountData(aLocale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1613
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1614
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1615
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1616
     * Gets a calendar using the default time zone and locale. The
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  1617
     * {@code Calendar} returned is based on the current time
16010
2727163b5df5 7092447: Clarify the default locale used in each locale sensitive operation
naoto
parents: 15658
diff changeset
  1618
     * in the default time zone with the default
2727163b5df5 7092447: Clarify the default locale used in each locale sensitive operation
naoto
parents: 15658
diff changeset
  1619
     * {@link Locale.Category#FORMAT FORMAT} locale.
48251
57148c79bd75 8176841: Additional Unicode Language-Tag Extensions
naoto
parents: 47216
diff changeset
  1620
     * <p>
57148c79bd75 8176841: Additional Unicode Language-Tag Extensions
naoto
parents: 47216
diff changeset
  1621
     * If the locale contains the time zone with "tz"
57148c79bd75 8176841: Additional Unicode Language-Tag Extensions
naoto
parents: 47216
diff changeset
  1622
     * <a href="Locale.html#def_locale_extension">Unicode extension</a>,
57148c79bd75 8176841: Additional Unicode Language-Tag Extensions
naoto
parents: 47216
diff changeset
  1623
     * that time zone is used instead.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1624
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1625
     * @return a Calendar.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1626
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1627
    public static Calendar getInstance()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1628
    {
48251
57148c79bd75 8176841: Additional Unicode Language-Tag Extensions
naoto
parents: 47216
diff changeset
  1629
        Locale aLocale = Locale.getDefault(Locale.Category.FORMAT);
57148c79bd75 8176841: Additional Unicode Language-Tag Extensions
naoto
parents: 47216
diff changeset
  1630
        return createCalendar(defaultTimeZone(aLocale), aLocale);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1631
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1632
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1633
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1634
     * Gets a calendar using the specified time zone and default locale.
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  1635
     * The {@code Calendar} returned is based on the current time
16010
2727163b5df5 7092447: Clarify the default locale used in each locale sensitive operation
naoto
parents: 15658
diff changeset
  1636
     * in the given time zone with the default
2727163b5df5 7092447: Clarify the default locale used in each locale sensitive operation
naoto
parents: 15658
diff changeset
  1637
     * {@link Locale.Category#FORMAT FORMAT} locale.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1638
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1639
     * @param zone the time zone to use
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1640
     * @return a Calendar.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1641
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1642
    public static Calendar getInstance(TimeZone zone)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1643
    {
6489
9e7015635425 4700857: RFE: separating user locale and user interface locale
naoto
parents: 5506
diff changeset
  1644
        return createCalendar(zone, Locale.getDefault(Locale.Category.FORMAT));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1645
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1646
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1647
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1648
     * Gets a calendar using the default time zone and specified locale.
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  1649
     * The {@code Calendar} returned is based on the current time
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1650
     * in the default time zone with the given locale.
48251
57148c79bd75 8176841: Additional Unicode Language-Tag Extensions
naoto
parents: 47216
diff changeset
  1651
     * <p>
57148c79bd75 8176841: Additional Unicode Language-Tag Extensions
naoto
parents: 47216
diff changeset
  1652
     * If the locale contains the time zone with "tz"
57148c79bd75 8176841: Additional Unicode Language-Tag Extensions
naoto
parents: 47216
diff changeset
  1653
     * <a href="Locale.html#def_locale_extension">Unicode extension</a>,
57148c79bd75 8176841: Additional Unicode Language-Tag Extensions
naoto
parents: 47216
diff changeset
  1654
     * that time zone is used instead.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1655
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1656
     * @param aLocale the locale for the week data
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1657
     * @return a Calendar.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1658
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1659
    public static Calendar getInstance(Locale aLocale)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1660
    {
48251
57148c79bd75 8176841: Additional Unicode Language-Tag Extensions
naoto
parents: 47216
diff changeset
  1661
        return createCalendar(defaultTimeZone(aLocale), aLocale);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1662
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1663
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1664
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1665
     * Gets a calendar with the specified time zone and locale.
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  1666
     * The {@code Calendar} returned is based on the current time
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1667
     * in the given time zone with the given locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1668
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1669
     * @param zone the time zone to use
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1670
     * @param aLocale the locale for the week data
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1671
     * @return a Calendar.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1672
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1673
    public static Calendar getInstance(TimeZone zone,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1674
                                       Locale aLocale)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1675
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1676
        return createCalendar(zone, aLocale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1677
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1678
48251
57148c79bd75 8176841: Additional Unicode Language-Tag Extensions
naoto
parents: 47216
diff changeset
  1679
    private static TimeZone defaultTimeZone(Locale l) {
57148c79bd75 8176841: Additional Unicode Language-Tag Extensions
naoto
parents: 47216
diff changeset
  1680
        TimeZone defaultTZ = TimeZone.getDefault();
57148c79bd75 8176841: Additional Unicode Language-Tag Extensions
naoto
parents: 47216
diff changeset
  1681
        String shortTZID = l.getUnicodeLocaleType("tz");
57148c79bd75 8176841: Additional Unicode Language-Tag Extensions
naoto
parents: 47216
diff changeset
  1682
        return shortTZID != null ?
57148c79bd75 8176841: Additional Unicode Language-Tag Extensions
naoto
parents: 47216
diff changeset
  1683
            TimeZoneNameUtility.convertLDMLShortID(shortTZID)
57148c79bd75 8176841: Additional Unicode Language-Tag Extensions
naoto
parents: 47216
diff changeset
  1684
                .map(TimeZone::getTimeZone)
57148c79bd75 8176841: Additional Unicode Language-Tag Extensions
naoto
parents: 47216
diff changeset
  1685
                .orElse(defaultTZ) :
57148c79bd75 8176841: Additional Unicode Language-Tag Extensions
naoto
parents: 47216
diff changeset
  1686
            defaultTZ;
57148c79bd75 8176841: Additional Unicode Language-Tag Extensions
naoto
parents: 47216
diff changeset
  1687
    }
57148c79bd75 8176841: Additional Unicode Language-Tag Extensions
naoto
parents: 47216
diff changeset
  1688
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1689
    private static Calendar createCalendar(TimeZone zone,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1690
                                           Locale aLocale)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1691
    {
16481
8e30386cc014 8008576: Calendar mismatch using Host LocaleProviderAdapter
naoto
parents: 16010
diff changeset
  1692
        CalendarProvider provider =
8e30386cc014 8008576: Calendar mismatch using Host LocaleProviderAdapter
naoto
parents: 16010
diff changeset
  1693
            LocaleProviderAdapter.getAdapter(CalendarProvider.class, aLocale)
8e30386cc014 8008576: Calendar mismatch using Host LocaleProviderAdapter
naoto
parents: 16010
diff changeset
  1694
                                 .getCalendarProvider();
8e30386cc014 8008576: Calendar mismatch using Host LocaleProviderAdapter
naoto
parents: 16010
diff changeset
  1695
        if (provider != null) {
8e30386cc014 8008576: Calendar mismatch using Host LocaleProviderAdapter
naoto
parents: 16010
diff changeset
  1696
            try {
8e30386cc014 8008576: Calendar mismatch using Host LocaleProviderAdapter
naoto
parents: 16010
diff changeset
  1697
                return provider.getInstance(zone, aLocale);
8e30386cc014 8008576: Calendar mismatch using Host LocaleProviderAdapter
naoto
parents: 16010
diff changeset
  1698
            } catch (IllegalArgumentException iae) {
8e30386cc014 8008576: Calendar mismatch using Host LocaleProviderAdapter
naoto
parents: 16010
diff changeset
  1699
                // fall back to the default instantiation
8e30386cc014 8008576: Calendar mismatch using Host LocaleProviderAdapter
naoto
parents: 16010
diff changeset
  1700
            }
8e30386cc014 8008576: Calendar mismatch using Host LocaleProviderAdapter
naoto
parents: 16010
diff changeset
  1701
        }
8e30386cc014 8008576: Calendar mismatch using Host LocaleProviderAdapter
naoto
parents: 16010
diff changeset
  1702
6501
684810d882b3 6875847: Java Locale Enhancement
naoto
parents: 6491
diff changeset
  1703
        Calendar cal = null;
684810d882b3 6875847: Java Locale Enhancement
naoto
parents: 6491
diff changeset
  1704
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  1705
        if (aLocale.hasExtensions()) {
15280
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  1706
            String caltype = aLocale.getUnicodeLocaleType("ca");
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  1707
            if (caltype != null) {
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  1708
                switch (caltype) {
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  1709
                case "buddhist":
7003
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6501
diff changeset
  1710
                cal = new BuddhistCalendar(zone, aLocale);
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  1711
                    break;
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  1712
                case "japanese":
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  1713
                    cal = new JapaneseImperialCalendar(zone, aLocale);
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  1714
                    break;
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  1715
                case "gregory":
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  1716
                    cal = new GregorianCalendar(zone, aLocale);
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  1717
                    break;
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  1718
                }
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  1719
            }
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  1720
        }
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  1721
        if (cal == null) {
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  1722
            // If no known calendar type is explicitly specified,
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  1723
            // perform the traditional way to create a Calendar:
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  1724
            // create a BuddhistCalendar for th_TH locale,
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  1725
            // a JapaneseImperialCalendar for ja_JP_JP locale, or
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  1726
            // a GregorianCalendar for any other locales.
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  1727
            // NOTE: The language, country and variant strings are interned.
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  1728
            if (aLocale.getLanguage() == "th" && aLocale.getCountry() == "TH") {
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  1729
                cal = new BuddhistCalendar(zone, aLocale);
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  1730
            } else if (aLocale.getVariant() == "JP" && aLocale.getLanguage() == "ja"
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  1731
                       && aLocale.getCountry() == "JP") {
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  1732
                cal = new JapaneseImperialCalendar(zone, aLocale);
6501
684810d882b3 6875847: Java Locale Enhancement
naoto
parents: 6491
diff changeset
  1733
            } else {
684810d882b3 6875847: Java Locale Enhancement
naoto
parents: 6491
diff changeset
  1734
                cal = new GregorianCalendar(zone, aLocale);
684810d882b3 6875847: Java Locale Enhancement
naoto
parents: 6491
diff changeset
  1735
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1736
        }
6501
684810d882b3 6875847: Java Locale Enhancement
naoto
parents: 6491
diff changeset
  1737
        return cal;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1738
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1739
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1740
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  1741
     * Returns an array of all locales for which the {@code getInstance}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1742
     * methods of this class can return localized instances.
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  1743
     * The array returned must contain at least a {@code Locale}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1744
     * instance equal to {@link java.util.Locale#US Locale.US}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1745
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1746
     * @return An array of locales for which localized
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  1747
     *         {@code Calendar} instances are available.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1748
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1749
    public static synchronized Locale[] getAvailableLocales()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1750
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1751
        return DateFormat.getAvailableLocales();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1752
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1753
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1754
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1755
     * Converts the current calendar field values in {@link #fields fields[]}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1756
     * to the millisecond time value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1757
     * {@link #time}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1758
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1759
     * @see #complete()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1760
     * @see #computeFields()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1761
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1762
    protected abstract void computeTime();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1763
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1764
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1765
     * Converts the current millisecond time value {@link #time}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1766
     * to calendar field values in {@link #fields fields[]}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1767
     * This allows you to sync up the calendar field values with
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1768
     * a new time that is set for the calendar.  The time is <em>not</em>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1769
     * recomputed first; to recompute the time, then the fields, call the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1770
     * {@link #complete()} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1771
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1772
     * @see #computeTime()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1773
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1774
    protected abstract void computeFields();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1775
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1776
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  1777
     * Returns a {@code Date} object representing this
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  1778
     * {@code Calendar}'s time value (millisecond offset from the <a
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1779
     * href="#Epoch">Epoch</a>").
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1780
     *
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  1781
     * @return a {@code Date} representing the time value.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1782
     * @see #setTime(Date)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1783
     * @see #getTimeInMillis()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1784
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1785
    public final Date getTime() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1786
        return new Date(getTimeInMillis());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1787
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1788
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1789
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  1790
     * Sets this Calendar's time with the given {@code Date}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1791
     * <p>
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  1792
     * Note: Calling {@code setTime()} with
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  1793
     * {@code Date(Long.MAX_VALUE)} or {@code Date(Long.MIN_VALUE)}
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  1794
     * may yield incorrect field values from {@code get()}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1795
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1796
     * @param date the given Date.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1797
     * @see #getTime()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1798
     * @see #setTimeInMillis(long)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1799
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1800
    public final void setTime(Date date) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1801
        setTimeInMillis(date.getTime());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1802
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1803
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1804
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1805
     * Returns this Calendar's time value in milliseconds.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1806
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1807
     * @return the current time as UTC milliseconds from the epoch.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1808
     * @see #getTime()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1809
     * @see #setTimeInMillis(long)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1810
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1811
    public long getTimeInMillis() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1812
        if (!isTimeSet) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1813
            updateTime();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1814
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1815
        return time;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1816
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1817
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1818
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1819
     * Sets this Calendar's current time from the given long value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1820
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1821
     * @param millis the new time in UTC milliseconds from the epoch.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1822
     * @see #setTime(Date)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1823
     * @see #getTimeInMillis()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1824
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1825
    public void setTimeInMillis(long millis) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1826
        // If we don't need to recalculate the calendar field values,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1827
        // do nothing.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1828
        if (time == millis && isTimeSet && areFieldsSet && areAllFieldsSet
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1829
            && (zone instanceof ZoneInfo) && !((ZoneInfo)zone).isDirty()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1830
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1831
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1832
        time = millis;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1833
        isTimeSet = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1834
        areFieldsSet = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1835
        computeFields();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1836
        areAllFieldsSet = areFieldsSet = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1837
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1838
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1839
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1840
     * Returns the value of the given calendar field. In lenient mode,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1841
     * all calendar fields are normalized. In non-lenient mode, all
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1842
     * calendar fields are validated and this method throws an
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1843
     * exception if any calendar fields have out-of-range values. The
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1844
     * normalization and validation are handled by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1845
     * {@link #complete()} method, which process is calendar
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1846
     * system dependent.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1847
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1848
     * @param field the given calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1849
     * @return the value for the given calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1850
     * @throws ArrayIndexOutOfBoundsException if the specified field is out of range
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1851
     *             (<code>field &lt; 0 || field &gt;= FIELD_COUNT</code>).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1852
     * @see #set(int,int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1853
     * @see #complete()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1854
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1855
    public int get(int field)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1856
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1857
        complete();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1858
        return internalGet(field);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1859
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1860
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1861
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1862
     * Returns the value of the given calendar field. This method does
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1863
     * not involve normalization or validation of the field value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1864
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1865
     * @param field the given calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1866
     * @return the value for the given calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1867
     * @see #get(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1868
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1869
    protected final int internalGet(int field)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1870
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1871
        return fields[field];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1872
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1873
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1874
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1875
     * Sets the value of the given calendar field. This method does
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1876
     * not affect any setting state of the field in this
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  1877
     * {@code Calendar} instance.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1878
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1879
     * @throws IndexOutOfBoundsException if the specified field is out of range
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1880
     *             (<code>field &lt; 0 || field &gt;= FIELD_COUNT</code>).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1881
     * @see #areFieldsSet
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1882
     * @see #isTimeSet
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1883
     * @see #areAllFieldsSet
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1884
     * @see #set(int,int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1885
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1886
    final void internalSet(int field, int value)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1887
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1888
        fields[field] = value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1889
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1890
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1891
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1892
     * Sets the given calendar field to the given value. The value is not
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1893
     * interpreted by this method regardless of the leniency mode.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1894
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1895
     * @param field the given calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1896
     * @param value the value to be set for the given calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1897
     * @throws ArrayIndexOutOfBoundsException if the specified field is out of range
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1898
     *             (<code>field &lt; 0 || field &gt;= FIELD_COUNT</code>).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1899
     * in non-lenient mode.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1900
     * @see #set(int,int,int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1901
     * @see #set(int,int,int,int,int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1902
     * @see #set(int,int,int,int,int,int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1903
     * @see #get(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1904
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1905
    public void set(int field, int value)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1906
    {
1828
26bee4a3a499 6645263: (cal) Calendar throw java.lang.IllegalArgumentException: WEEK_OF_MONTH
peytoia
parents: 2
diff changeset
  1907
        // 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
  1908
        // fields before changing any fields.
26bee4a3a499 6645263: (cal) Calendar throw java.lang.IllegalArgumentException: WEEK_OF_MONTH
peytoia
parents: 2
diff changeset
  1909
        if (areFieldsSet && !areAllFieldsSet) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1910
            computeFields();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1911
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1912
        internalSet(field, value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1913
        isTimeSet = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1914
        areFieldsSet = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1915
        isSet[field] = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1916
        stamp[field] = nextStamp++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1917
        if (nextStamp == Integer.MAX_VALUE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1918
            adjustStamp();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1919
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1920
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1921
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1922
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  1923
     * Sets the values for the calendar fields {@code YEAR},
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  1924
     * {@code MONTH}, and {@code DAY_OF_MONTH}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1925
     * Previous values of other calendar fields are retained.  If this is not desired,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1926
     * call {@link #clear()} first.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1927
     *
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  1928
     * @param year the value used to set the {@code YEAR} calendar field.
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  1929
     * @param month the value used to set the {@code MONTH} calendar field.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1930
     * Month value is 0-based. e.g., 0 for January.
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  1931
     * @param date the value used to set the {@code DAY_OF_MONTH} calendar field.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1932
     * @see #set(int,int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1933
     * @see #set(int,int,int,int,int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1934
     * @see #set(int,int,int,int,int,int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1935
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1936
    public final void set(int year, int month, int date)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1937
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1938
        set(YEAR, year);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1939
        set(MONTH, month);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1940
        set(DATE, date);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1941
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1942
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1943
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  1944
     * Sets the values for the calendar fields {@code YEAR},
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  1945
     * {@code MONTH}, {@code DAY_OF_MONTH},
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  1946
     * {@code HOUR_OF_DAY}, and {@code MINUTE}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1947
     * Previous values of other fields are retained.  If this is not desired,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1948
     * call {@link #clear()} first.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1949
     *
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  1950
     * @param year the value used to set the {@code YEAR} calendar field.
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  1951
     * @param month the value used to set the {@code MONTH} calendar field.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1952
     * Month value is 0-based. e.g., 0 for January.
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  1953
     * @param date the value used to set the {@code DAY_OF_MONTH} calendar field.
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  1954
     * @param hourOfDay the value used to set the {@code HOUR_OF_DAY} calendar field.
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  1955
     * @param minute the value used to set the {@code MINUTE} calendar field.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1956
     * @see #set(int,int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1957
     * @see #set(int,int,int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1958
     * @see #set(int,int,int,int,int,int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1959
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1960
    public final void set(int year, int month, int date, int hourOfDay, int minute)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1961
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1962
        set(YEAR, year);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1963
        set(MONTH, month);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1964
        set(DATE, date);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1965
        set(HOUR_OF_DAY, hourOfDay);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1966
        set(MINUTE, minute);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1967
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1968
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1969
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  1970
     * Sets the values for the fields {@code YEAR}, {@code MONTH},
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  1971
     * {@code DAY_OF_MONTH}, {@code HOUR_OF_DAY}, {@code MINUTE}, and
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  1972
     * {@code SECOND}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1973
     * Previous values of other fields are retained.  If this is not desired,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1974
     * call {@link #clear()} first.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1975
     *
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  1976
     * @param year the value used to set the {@code YEAR} calendar field.
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  1977
     * @param month the value used to set the {@code MONTH} calendar field.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1978
     * Month value is 0-based. e.g., 0 for January.
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  1979
     * @param date the value used to set the {@code DAY_OF_MONTH} calendar field.
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  1980
     * @param hourOfDay the value used to set the {@code HOUR_OF_DAY} calendar field.
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  1981
     * @param minute the value used to set the {@code MINUTE} calendar field.
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  1982
     * @param second the value used to set the {@code SECOND} calendar field.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1983
     * @see #set(int,int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1984
     * @see #set(int,int,int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1985
     * @see #set(int,int,int,int,int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1986
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1987
    public final void set(int year, int month, int date, int hourOfDay, int minute,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1988
                          int second)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1989
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1990
        set(YEAR, year);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1991
        set(MONTH, month);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1992
        set(DATE, date);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1993
        set(HOUR_OF_DAY, hourOfDay);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1994
        set(MINUTE, minute);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1995
        set(SECOND, second);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1996
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1997
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1998
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1999
     * Sets all the calendar field values and the time value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2000
     * (millisecond offset from the <a href="#Epoch">Epoch</a>) of
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2001
     * this {@code Calendar} undefined. This means that {@link
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2002
     * #isSet(int) isSet()} will return {@code false} for all the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2003
     * calendar fields, and the date and time calculations will treat
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2004
     * the fields as if they had never been set. A
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2005
     * {@code Calendar} implementation class may use its specific
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2006
     * default field values for date/time calculations. For example,
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2007
     * {@code GregorianCalendar} uses 1970 if the
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2008
     * {@code YEAR} field value is undefined.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2009
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2010
     * @see #clear(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2011
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2012
    public final void clear()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2013
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2014
        for (int i = 0; i < fields.length; ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2015
            stamp[i] = fields[i] = 0; // UNSET == 0
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2016
            isSet[i++] = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2017
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2018
        areAllFieldsSet = areFieldsSet = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2019
        isTimeSet = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2020
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2021
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2022
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2023
     * Sets the given calendar field value and the time value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2024
     * (millisecond offset from the <a href="#Epoch">Epoch</a>) of
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2025
     * this {@code Calendar} undefined. This means that {@link
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2026
     * #isSet(int) isSet(field)} will return {@code false}, and
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2027
     * the date and time calculations will treat the field as if it
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2028
     * had never been set. A {@code Calendar} implementation
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2029
     * class may use the field's specific default value for date and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2030
     * time calculations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2031
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2032
     * <p>The {@link #HOUR_OF_DAY}, {@link #HOUR} and {@link #AM_PM}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2033
     * fields are handled independently and the <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2034
     * href="#time_resolution">the resolution rule for the time of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2035
     * day</a> is applied. Clearing one of the fields doesn't reset
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2036
     * the hour of day value of this {@code Calendar}. Use {@link
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2037
     * #set(int,int) set(Calendar.HOUR_OF_DAY, 0)} to reset the hour
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2038
     * value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2039
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2040
     * @param field the calendar field to be cleared.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2041
     * @see #clear()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2042
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2043
    public final void clear(int field)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2044
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2045
        fields[field] = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2046
        stamp[field] = UNSET;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2047
        isSet[field] = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2048
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2049
        areAllFieldsSet = areFieldsSet = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2050
        isTimeSet = false;
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
     * Determines if the given calendar field has a value set,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2055
     * including cases that the value has been set by internal fields
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2056
     * calculations triggered by a {@code get} method call.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2057
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18156
diff changeset
  2058
     * @param field the calendar field to test
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2059
     * @return {@code true} if the given calendar field has a value set;
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2060
     * {@code false} otherwise.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2061
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2062
    public final boolean isSet(int field)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2063
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2064
        return stamp[field] != UNSET;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2065
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2066
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2067
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2068
     * Returns the string representation of the calendar
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2069
     * {@code field} value in the given {@code style} and
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2070
     * {@code locale}.  If no string representation is
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2071
     * applicable, {@code null} is returned. This method calls
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2072
     * {@link Calendar#get(int) get(field)} to get the calendar
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2073
     * {@code field} value if the string representation is
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2074
     * applicable to the given calendar {@code field}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2075
     *
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2076
     * <p>For example, if this {@code Calendar} is a
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2077
     * {@code GregorianCalendar} and its date is 2005-01-01, then
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2078
     * the string representation of the {@link #MONTH} field would be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2079
     * "January" in the long style in an English locale or "Jan" in
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2080
     * the short style. However, no string representation would be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2081
     * available for the {@link #DAY_OF_MONTH} field, and this method
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2082
     * would return {@code null}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2083
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2084
     * <p>The default implementation supports the calendar fields for
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2085
     * which a {@link DateFormatSymbols} has names in the given
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2086
     * {@code locale}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2087
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2088
     * @param field
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2089
     *        the calendar field for which the string representation
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2090
     *        is returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2091
     * @param style
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2092
     *        the style applied to the string representation; one of {@link
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2093
     *        #SHORT_FORMAT} ({@link #SHORT}), {@link #SHORT_STANDALONE},
14765
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
  2094
     *        {@link #LONG_FORMAT} ({@link #LONG}), {@link #LONG_STANDALONE},
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
  2095
     *        {@link #NARROW_FORMAT}, or {@link #NARROW_STANDALONE}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2096
     * @param locale
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2097
     *        the locale for the string representation
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2098
     *        (any calendar types specified by {@code locale} are ignored)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2099
     * @return the string representation of the given
14765
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
  2100
     *        {@code field} in the given {@code style}, or
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
  2101
     *        {@code null} if no string representation is
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2102
     *        applicable.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 57956
diff changeset
  2103
     * @throws    IllegalArgumentException
14765
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
  2104
     *        if {@code field} or {@code style} is invalid,
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
  2105
     *        or if this {@code Calendar} is non-lenient and any
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2106
     *        of the calendar fields have invalid values
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 57956
diff changeset
  2107
     * @throws    NullPointerException
14765
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
  2108
     *        if {@code locale} is null
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2109
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2110
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2111
    public String getDisplayName(int field, int style, Locale locale) {
14765
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
  2112
        if (!checkDisplayNameParams(field, style, SHORT, NARROW_FORMAT, locale,
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2113
                            ERA_MASK|MONTH_MASK|DAY_OF_WEEK_MASK|AM_PM_MASK)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2114
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2115
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2116
29720
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2117
        String calendarType = getCalendarType();
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2118
        int fieldValue = get(field);
34878
7d7e55ff253a 8039301: [ja] Host Locale Provider uses non-translated Calendar field names
naoto
parents: 32649
diff changeset
  2119
        // the standalone/narrow styles and short era are supported only through
7d7e55ff253a 8039301: [ja] Host Locale Provider uses non-translated Calendar field names
naoto
parents: 32649
diff changeset
  2120
        // CalendarNameProviders.
7d7e55ff253a 8039301: [ja] Host Locale Provider uses non-translated Calendar field names
naoto
parents: 32649
diff changeset
  2121
        if (isStandaloneStyle(style) || isNarrowFormatStyle(style) ||
7d7e55ff253a 8039301: [ja] Host Locale Provider uses non-translated Calendar field names
naoto
parents: 32649
diff changeset
  2122
            field == ERA && (style & SHORT) == SHORT) {
29720
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2123
            String val = CalendarDataUtility.retrieveFieldValueName(calendarType,
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2124
                                                                    field, fieldValue,
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2125
                                                                    style, locale);
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2126
            // Perform fallback here to follow the CLDR rules
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2127
            if (val == null) {
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2128
                if (isNarrowFormatStyle(style)) {
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2129
                    val = CalendarDataUtility.retrieveFieldValueName(calendarType,
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2130
                                                                     field, fieldValue,
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2131
                                                                     toStandaloneStyle(style),
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2132
                                                                     locale);
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2133
                } else if (isStandaloneStyle(style)) {
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2134
                    val = CalendarDataUtility.retrieveFieldValueName(calendarType,
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2135
                                                                     field, fieldValue,
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2136
                                                                     getBaseStyle(style),
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2137
                                                                     locale);
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2138
                }
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2139
            }
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2140
            return val;
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2141
        }
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2142
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2143
        DateFormatSymbols symbols = DateFormatSymbols.getInstance(locale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2144
        String[] strings = getFieldStrings(field, style, symbols);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2145
        if (strings != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2146
            if (fieldValue < strings.length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2147
                return strings[fieldValue];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2148
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2149
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2150
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2151
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2152
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2153
    /**
14765
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
  2154
     * Returns a {@code Map} containing all names of the calendar
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
  2155
     * {@code field} in the given {@code style} and
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
  2156
     * {@code locale} and their corresponding field values. For
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
  2157
     * example, if this {@code Calendar} is a {@link
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2158
     * GregorianCalendar}, the returned map would contain "Jan" to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2159
     * {@link #JANUARY}, "Feb" to {@link #FEBRUARY}, and so on, in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2160
     * {@linkplain #SHORT short} style in an English locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2161
     *
14765
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
  2162
     * <p>Narrow names may not be unique due to use of single characters,
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
  2163
     * such as "S" for Sunday and Saturday. In that case narrow names are not
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
  2164
     * included in the returned {@code Map}.
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
  2165
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2166
     * <p>The values of other calendar fields may be taken into
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2167
     * account to determine a set of display names. For example, if
14765
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
  2168
     * this {@code Calendar} is a lunisolar calendar system and
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2169
     * the year value given by the {@link #YEAR} field has a leap
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2170
     * month, this method would return month names containing the leap
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2171
     * month name, and month names are mapped to their values specific
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2172
     * for the year.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2173
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2174
     * <p>The default implementation supports display names contained in
14765
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
  2175
     * a {@link DateFormatSymbols}. For example, if {@code field}
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
  2176
     * is {@link #MONTH} and {@code style} is {@link
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
  2177
     * #ALL_STYLES}, this method returns a {@code Map} containing
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2178
     * all strings returned by {@link DateFormatSymbols#getShortMonths()}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2179
     * and {@link DateFormatSymbols#getMonths()}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2180
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2181
     * @param field
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2182
     *        the calendar field for which the display names are returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2183
     * @param style
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2184
     *        the style applied to the string representation; one of {@link
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2185
     *        #SHORT_FORMAT} ({@link #SHORT}), {@link #SHORT_STANDALONE},
14765
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
  2186
     *        {@link #LONG_FORMAT} ({@link #LONG}), {@link #LONG_STANDALONE},
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
  2187
     *        {@link #NARROW_FORMAT}, or {@link #NARROW_STANDALONE}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2188
     * @param locale
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2189
     *        the locale for the display names
14765
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
  2190
     * @return a {@code Map} containing all display names in
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
  2191
     *        {@code style} and {@code locale} and their
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
  2192
     *        field values, or {@code null} if no display names
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
  2193
     *        are defined for {@code field}
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 57956
diff changeset
  2194
     * @throws    IllegalArgumentException
14765
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
  2195
     *        if {@code field} or {@code style} is invalid,
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
  2196
     *        or if this {@code Calendar} is non-lenient and any
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2197
     *        of the calendar fields have invalid values
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 57956
diff changeset
  2198
     * @throws    NullPointerException
14765
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
  2199
     *        if {@code locale} is null
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2200
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2201
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2202
    public Map<String, Integer> getDisplayNames(int field, int style, Locale locale) {
14765
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
  2203
        if (!checkDisplayNameParams(field, style, ALL_STYLES, NARROW_FORMAT, locale,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2204
                                    ERA_MASK|MONTH_MASK|DAY_OF_WEEK_MASK|AM_PM_MASK)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2205
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2206
        }
29720
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2207
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2208
        String calendarType = getCalendarType();
57549
bfe9696bf57f 8228465: HOST locale provider holds wrong era name for GregorianCalendar in US locale
naoto
parents: 54206
diff changeset
  2209
        if (style == ALL_STYLES || isStandaloneStyle(style) || isNarrowFormatStyle(style) ||
bfe9696bf57f 8228465: HOST locale provider holds wrong era name for GregorianCalendar in US locale
naoto
parents: 54206
diff changeset
  2210
            field == ERA && (style & SHORT) == SHORT) {
29720
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2211
            Map<String, Integer> map;
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2212
            map = CalendarDataUtility.retrieveFieldValueNames(calendarType, field, style, locale);
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2213
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2214
            // Perform fallback here to follow the CLDR rules
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2215
            if (map == null) {
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2216
                if (isNarrowFormatStyle(style)) {
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2217
                    map = CalendarDataUtility.retrieveFieldValueNames(calendarType, field,
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2218
                                                                      toStandaloneStyle(style), locale);
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2219
                } else if (style != ALL_STYLES) {
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2220
                    map = CalendarDataUtility.retrieveFieldValueNames(calendarType, field,
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2221
                                                                      getBaseStyle(style), locale);
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2222
                }
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2223
            }
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2224
            return map;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2225
        }
29720
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2226
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2227
        // SHORT or LONG
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2228
        return getDisplayNamesImpl(field, style, locale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2229
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2230
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2231
    private Map<String,Integer> getDisplayNamesImpl(int field, int style, Locale locale) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2232
        DateFormatSymbols symbols = DateFormatSymbols.getInstance(locale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2233
        String[] strings = getFieldStrings(field, style, symbols);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2234
        if (strings != null) {
12448
b95438b17098 7157893: Warnings Cleanup in java.util.*
khazra
parents: 11681
diff changeset
  2235
            Map<String,Integer> names = new HashMap<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2236
            for (int i = 0; i < strings.length; i++) {
53018
8bf9268df0e2 8215281: Use String.isEmpty() when applicable in java.base
redestad
parents: 51660
diff changeset
  2237
                if (strings[i].isEmpty()) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2238
                    continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2239
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2240
                names.put(strings[i], i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2241
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2242
            return names;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2243
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2244
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2245
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2246
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2247
    boolean checkDisplayNameParams(int field, int style, int minStyle, int maxStyle,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2248
                                   Locale locale, int fieldMask) {
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2249
        int baseStyle = getBaseStyle(style); // Ignore the standalone mask
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2250
        if (field < 0 || field >= fields.length ||
45376
86022ba55981 8176847: Calendar.checkDisplayNameParams() should check case of style == 3
naoto
parents: 44844
diff changeset
  2251
            baseStyle < minStyle || baseStyle > maxStyle || baseStyle == 3) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2252
            throw new IllegalArgumentException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2253
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2254
        if (locale == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2255
            throw new NullPointerException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2256
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2257
        return isFieldSet(fieldMask, field);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2258
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2259
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2260
    private String[] getFieldStrings(int field, int style, DateFormatSymbols symbols) {
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2261
        int baseStyle = getBaseStyle(style); // ignore the standalone mask
14765
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
  2262
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
  2263
        // DateFormatSymbols doesn't support any narrow names.
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
  2264
        if (baseStyle == NARROW_FORMAT) {
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
  2265
            return null;
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
  2266
        }
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
  2267
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2268
        String[] strings = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2269
        switch (field) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2270
        case ERA:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2271
            strings = symbols.getEras();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2272
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2273
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2274
        case MONTH:
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2275
            strings = (baseStyle == LONG) ? symbols.getMonths() : symbols.getShortMonths();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2276
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2277
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2278
        case DAY_OF_WEEK:
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2279
            strings = (baseStyle == LONG) ? symbols.getWeekdays() : symbols.getShortWeekdays();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2280
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2281
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2282
        case AM_PM:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2283
            strings = symbols.getAmPmStrings();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2284
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2285
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2286
        return strings;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2287
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2288
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2289
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2290
     * Fills in any unset fields in the calendar fields. First, the {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2291
     * #computeTime()} method is called if the time value (millisecond offset
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2292
     * from the <a href="#Epoch">Epoch</a>) has not been calculated from
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2293
     * calendar field values. Then, the {@link #computeFields()} method is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2294
     * called to calculate all calendar field values.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2295
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2296
    protected void complete()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2297
    {
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2298
        if (!isTimeSet) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2299
            updateTime();
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2300
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2301
        if (!areFieldsSet || !areAllFieldsSet) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2302
            computeFields(); // fills in unset fields
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2303
            areAllFieldsSet = areFieldsSet = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2304
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2305
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2306
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2307
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2308
     * Returns whether the value of the specified calendar field has been set
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2309
     * externally by calling one of the setter methods rather than by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2310
     * internal time calculation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2311
     *
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2312
     * @return {@code true} if the field has been set externally,
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2313
     * {@code false} otherwise.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 57956
diff changeset
  2314
     * @throws    IndexOutOfBoundsException if the specified
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2315
     *                {@code field} is out of range
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2316
     *               (<code>field &lt; 0 || field &gt;= FIELD_COUNT</code>).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2317
     * @see #selectFields()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2318
     * @see #setFieldsComputed(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2319
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2320
    final boolean isExternallySet(int field) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2321
        return stamp[field] >= MINIMUM_USER_STAMP;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2322
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2323
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2324
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2325
     * Returns a field mask (bit mask) indicating all calendar fields that
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2326
     * have the state of externally or internally set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2327
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2328
     * @return a bit mask indicating set state fields
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2329
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2330
    final int getSetStateFields() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2331
        int mask = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2332
        for (int i = 0; i < fields.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2333
            if (stamp[i] != UNSET) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2334
                mask |= 1 << i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2335
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2336
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2337
        return mask;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2338
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2339
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2340
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2341
     * Sets the state of the specified calendar fields to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2342
     * <em>computed</em>. This state means that the specified calendar fields
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2343
     * have valid values that have been set by internal time calculation
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2344
     * rather than by calling one of the setter methods.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2345
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2346
     * @param fieldMask the field to be marked as computed.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 57956
diff changeset
  2347
     * @throws    IndexOutOfBoundsException if the specified
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2348
     *                {@code field} is out of range
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2349
     *               (<code>field &lt; 0 || field &gt;= FIELD_COUNT</code>).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2350
     * @see #isExternallySet(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2351
     * @see #selectFields()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2352
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2353
    final void setFieldsComputed(int fieldMask) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2354
        if (fieldMask == ALL_FIELDS) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2355
            for (int i = 0; i < fields.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2356
                stamp[i] = COMPUTED;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2357
                isSet[i] = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2358
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2359
            areFieldsSet = areAllFieldsSet = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2360
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2361
            for (int i = 0; i < fields.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2362
                if ((fieldMask & 1) == 1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2363
                    stamp[i] = COMPUTED;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2364
                    isSet[i] = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2365
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2366
                    if (areAllFieldsSet && !isSet[i]) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2367
                        areAllFieldsSet = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2368
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2369
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2370
                fieldMask >>>= 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2371
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2372
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2373
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2374
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2375
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2376
     * Sets the state of the calendar fields that are <em>not</em> specified
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2377
     * by {@code fieldMask} to <em>unset</em>. If {@code fieldMask}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2378
     * specifies all the calendar fields, then the state of this
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2379
     * {@code Calendar} becomes that all the calendar fields are in sync
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2380
     * with the time value (millisecond offset from the Epoch).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2381
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2382
     * @param fieldMask the field mask indicating which calendar fields are in
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2383
     * sync with the time value.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 57956
diff changeset
  2384
     * @throws    IndexOutOfBoundsException if the specified
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2385
     *                {@code field} is out of range
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2386
     *               (<code>field &lt; 0 || field &gt;= FIELD_COUNT</code>).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2387
     * @see #isExternallySet(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2388
     * @see #selectFields()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2389
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2390
    final void setFieldsNormalized(int fieldMask) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2391
        if (fieldMask != ALL_FIELDS) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2392
            for (int i = 0; i < fields.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2393
                if ((fieldMask & 1) == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2394
                    stamp[i] = fields[i] = 0; // UNSET == 0
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2395
                    isSet[i] = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2396
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2397
                fieldMask >>= 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2398
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2399
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2400
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2401
        // Some or all of the fields are in sync with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2402
        // milliseconds, but the stamp values are not normalized yet.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2403
        areFieldsSet = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2404
        areAllFieldsSet = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2405
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2406
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2407
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2408
     * Returns whether the calendar fields are partially in sync with the time
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2409
     * value or fully in sync but not stamp values are not normalized yet.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2410
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2411
    final boolean isPartiallyNormalized() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2412
        return areFieldsSet && !areAllFieldsSet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2413
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2414
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2415
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2416
     * Returns whether the calendar fields are fully in sync with the time
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2417
     * value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2418
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2419
    final boolean isFullyNormalized() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2420
        return areFieldsSet && areAllFieldsSet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2421
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2422
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2423
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2424
     * Marks this Calendar as not sync'd.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2425
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2426
    final void setUnnormalized() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2427
        areFieldsSet = areAllFieldsSet = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2428
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2429
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2430
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2431
     * Returns whether the specified {@code field} is on in the
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2432
     * {@code fieldMask}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2433
     */
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2434
    static boolean isFieldSet(int fieldMask, int field) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2435
        return (fieldMask & (1 << field)) != 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2436
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2437
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2438
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2439
     * Returns a field mask indicating which calendar field values
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2440
     * to be used to calculate the time value. The calendar fields are
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2441
     * returned as a bit mask, each bit of which corresponds to a field, i.e.,
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2442
     * the mask value of {@code field} is <code>(1 &lt;&lt;
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2443
     * field)</code>. For example, 0x26 represents the {@code YEAR},
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2444
     * {@code MONTH}, and {@code DAY_OF_MONTH} fields (i.e., 0x26 is
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2445
     * equal to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2446
     * <code>(1&lt;&lt;YEAR)|(1&lt;&lt;MONTH)|(1&lt;&lt;DAY_OF_MONTH))</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2447
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2448
     * <p>This method supports the calendar fields resolution as described in
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2449
     * the class description. If the bit mask for a given field is on and its
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2450
     * field has not been set (i.e., {@code isSet(field)} is
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2451
     * {@code false}), then the default value of the field has to be
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2452
     * used, which case means that the field has been selected because the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2453
     * selected combination involves the field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2454
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2455
     * @return a bit mask of selected fields
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2456
     * @see #isExternallySet(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2457
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2458
    final int selectFields() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2459
        // This implementation has been taken from the GregorianCalendar class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2460
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2461
        // The YEAR field must always be used regardless of its SET
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2462
        // state because YEAR is a mandatory field to determine the date
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2463
        // and the default value (EPOCH_YEAR) may change through the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2464
        // normalization process.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2465
        int fieldMask = YEAR_MASK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2466
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2467
        if (stamp[ERA] != UNSET) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2468
            fieldMask |= ERA_MASK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2469
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2470
        // Find the most recent group of fields specifying the day within
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2471
        // the year.  These may be any of the following combinations:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2472
        //   MONTH + DAY_OF_MONTH
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2473
        //   MONTH + WEEK_OF_MONTH + DAY_OF_WEEK
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2474
        //   MONTH + DAY_OF_WEEK_IN_MONTH + DAY_OF_WEEK
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2475
        //   DAY_OF_YEAR
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2476
        //   WEEK_OF_YEAR + DAY_OF_WEEK
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2477
        // We look for the most recent of the fields in each group to determine
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2478
        // the age of the group.  For groups involving a week-related field such
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2479
        // as WEEK_OF_MONTH, DAY_OF_WEEK_IN_MONTH, or WEEK_OF_YEAR, both the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2480
        // week-related field and the DAY_OF_WEEK must be set for the group as a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2481
        // whole to be considered.  (See bug 4153860 - liu 7/24/98.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2482
        int dowStamp = stamp[DAY_OF_WEEK];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2483
        int monthStamp = stamp[MONTH];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2484
        int domStamp = stamp[DAY_OF_MONTH];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2485
        int womStamp = aggregateStamp(stamp[WEEK_OF_MONTH], dowStamp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2486
        int dowimStamp = aggregateStamp(stamp[DAY_OF_WEEK_IN_MONTH], dowStamp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2487
        int doyStamp = stamp[DAY_OF_YEAR];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2488
        int woyStamp = aggregateStamp(stamp[WEEK_OF_YEAR], dowStamp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2489
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2490
        int bestStamp = domStamp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2491
        if (womStamp > bestStamp) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2492
            bestStamp = womStamp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2493
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2494
        if (dowimStamp > bestStamp) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2495
            bestStamp = dowimStamp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2496
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2497
        if (doyStamp > bestStamp) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2498
            bestStamp = doyStamp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2499
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2500
        if (woyStamp > bestStamp) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2501
            bestStamp = woyStamp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2502
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2503
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2504
        /* No complete combination exists.  Look for WEEK_OF_MONTH,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2505
         * DAY_OF_WEEK_IN_MONTH, or WEEK_OF_YEAR alone.  Treat DAY_OF_WEEK alone
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2506
         * as DAY_OF_WEEK_IN_MONTH.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2507
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2508
        if (bestStamp == UNSET) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2509
            womStamp = stamp[WEEK_OF_MONTH];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2510
            dowimStamp = Math.max(stamp[DAY_OF_WEEK_IN_MONTH], dowStamp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2511
            woyStamp = stamp[WEEK_OF_YEAR];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2512
            bestStamp = Math.max(Math.max(womStamp, dowimStamp), woyStamp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2513
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2514
            /* Treat MONTH alone or no fields at all as DAY_OF_MONTH.  This may
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2515
             * result in bestStamp = domStamp = UNSET if no fields are set,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2516
             * which indicates DAY_OF_MONTH.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2517
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2518
            if (bestStamp == UNSET) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2519
                bestStamp = domStamp = monthStamp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2520
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2521
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2522
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2523
        if (bestStamp == domStamp ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2524
           (bestStamp == womStamp && stamp[WEEK_OF_MONTH] >= stamp[WEEK_OF_YEAR]) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2525
           (bestStamp == dowimStamp && stamp[DAY_OF_WEEK_IN_MONTH] >= stamp[WEEK_OF_YEAR])) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2526
            fieldMask |= MONTH_MASK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2527
            if (bestStamp == domStamp) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2528
                fieldMask |= DAY_OF_MONTH_MASK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2529
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2530
                assert (bestStamp == womStamp || bestStamp == dowimStamp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2531
                if (dowStamp != UNSET) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2532
                    fieldMask |= DAY_OF_WEEK_MASK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2533
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2534
                if (womStamp == dowimStamp) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2535
                    // When they are equal, give the priority to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2536
                    // WEEK_OF_MONTH for compatibility.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2537
                    if (stamp[WEEK_OF_MONTH] >= stamp[DAY_OF_WEEK_IN_MONTH]) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2538
                        fieldMask |= WEEK_OF_MONTH_MASK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2539
                    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2540
                        fieldMask |= DAY_OF_WEEK_IN_MONTH_MASK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2541
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2542
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2543
                    if (bestStamp == womStamp) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2544
                        fieldMask |= WEEK_OF_MONTH_MASK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2545
                    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2546
                        assert (bestStamp == dowimStamp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2547
                        if (stamp[DAY_OF_WEEK_IN_MONTH] != UNSET) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2548
                            fieldMask |= DAY_OF_WEEK_IN_MONTH_MASK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2549
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2550
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2551
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2552
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2553
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2554
            assert (bestStamp == doyStamp || bestStamp == woyStamp ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2555
                    bestStamp == UNSET);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2556
            if (bestStamp == doyStamp) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2557
                fieldMask |= DAY_OF_YEAR_MASK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2558
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2559
                assert (bestStamp == woyStamp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2560
                if (dowStamp != UNSET) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2561
                    fieldMask |= DAY_OF_WEEK_MASK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2562
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2563
                fieldMask |= WEEK_OF_YEAR_MASK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2564
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2565
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2566
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2567
        // Find the best set of fields specifying the time of day.  There
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2568
        // are only two possibilities here; the HOUR_OF_DAY or the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2569
        // AM_PM and the HOUR.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2570
        int hourOfDayStamp = stamp[HOUR_OF_DAY];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2571
        int hourStamp = aggregateStamp(stamp[HOUR], stamp[AM_PM]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2572
        bestStamp = (hourStamp > hourOfDayStamp) ? hourStamp : hourOfDayStamp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2573
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2574
        // if bestStamp is still UNSET, then take HOUR or AM_PM. (See 4846659)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2575
        if (bestStamp == UNSET) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2576
            bestStamp = Math.max(stamp[HOUR], stamp[AM_PM]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2577
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2578
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2579
        // Hours
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2580
        if (bestStamp != UNSET) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2581
            if (bestStamp == hourOfDayStamp) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2582
                fieldMask |= HOUR_OF_DAY_MASK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2583
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2584
                fieldMask |= HOUR_MASK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2585
                if (stamp[AM_PM] != UNSET) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2586
                    fieldMask |= AM_PM_MASK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2587
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2588
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2589
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2590
        if (stamp[MINUTE] != UNSET) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2591
            fieldMask |= MINUTE_MASK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2592
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2593
        if (stamp[SECOND] != UNSET) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2594
            fieldMask |= SECOND_MASK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2595
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2596
        if (stamp[MILLISECOND] != UNSET) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2597
            fieldMask |= MILLISECOND_MASK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2598
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2599
        if (stamp[ZONE_OFFSET] >= MINIMUM_USER_STAMP) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2600
                fieldMask |= ZONE_OFFSET_MASK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2601
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2602
        if (stamp[DST_OFFSET] >= MINIMUM_USER_STAMP) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2603
            fieldMask |= DST_OFFSET_MASK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2604
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2605
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2606
        return fieldMask;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2607
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2608
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2609
    int getBaseStyle(int style) {
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2610
        return style & ~STANDALONE_MASK;
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2611
    }
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2612
29720
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2613
    private int toStandaloneStyle(int style) {
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2614
        return style | STANDALONE_MASK;
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2615
    }
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2616
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2617
    private boolean isStandaloneStyle(int style) {
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2618
        return (style & STANDALONE_MASK) != 0;
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2619
    }
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2620
29720
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2621
    private boolean isNarrowStyle(int style) {
14765
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
  2622
        return style == NARROW_FORMAT || style == NARROW_STANDALONE;
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
  2623
    }
0987999ed367 8000983: Support narrow display names for calendar fields
okutsu
parents: 14502
diff changeset
  2624
29720
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2625
    private boolean isNarrowFormatStyle(int style) {
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2626
        return style == NARROW_FORMAT;
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2627
    }
374070bf0fdf 8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
okutsu
parents: 28059
diff changeset
  2628
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2629
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2630
     * Returns the pseudo-time-stamp for two fields, given their
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2631
     * individual pseudo-time-stamps.  If either of the fields
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2632
     * is unset, then the aggregate is unset.  Otherwise, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2633
     * aggregate is the later of the two stamps.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2634
     */
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2635
    private static int aggregateStamp(int stamp_a, int stamp_b) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2636
        if (stamp_a == UNSET || stamp_b == UNSET) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2637
            return UNSET;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2638
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2639
        return (stamp_a > stamp_b) ? stamp_a : stamp_b;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2640
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2641
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2642
    /**
15280
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  2643
     * Returns an unmodifiable {@code Set} containing all calendar types
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  2644
     * supported by {@code Calendar} in the runtime environment. The available
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  2645
     * calendar types can be used for the <a
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  2646
     * href="Locale.html#def_locale_extension">Unicode locale extensions</a>.
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  2647
     * The {@code Set} returned contains at least {@code "gregory"}. The
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  2648
     * calendar types don't include aliases, such as {@code "gregorian"} for
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  2649
     * {@code "gregory"}.
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  2650
     *
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  2651
     * @return an unmodifiable {@code Set} containing all available calendar types
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  2652
     * @since 1.8
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  2653
     * @see #getCalendarType()
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  2654
     * @see Calendar.Builder#setCalendarType(String)
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  2655
     * @see Locale#getUnicodeLocaleType(String)
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  2656
     */
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  2657
    public static Set<String> getAvailableCalendarTypes() {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  2658
        return AvailableCalendarTypes.SET;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  2659
    }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  2660
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  2661
    private static class AvailableCalendarTypes {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  2662
        private static final Set<String> SET;
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  2663
        static {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  2664
            Set<String> set = new HashSet<>(3);
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  2665
            set.add("gregory");
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  2666
            set.add("buddhist");
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  2667
            set.add("japanese");
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  2668
            SET = Collections.unmodifiableSet(set);
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  2669
        }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  2670
        private AvailableCalendarTypes() {
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  2671
        }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  2672
    }
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  2673
d9e473e85f3c 4745761: (cal) RFE: Support builder for constructing Calendar
okutsu
parents: 14928
diff changeset
  2674
    /**
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2675
     * Returns the calendar type of this {@code Calendar}. Calendar types are
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2676
     * defined by the <em>Unicode Locale Data Markup Language (LDML)</em>
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2677
     * specification.
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2678
     *
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2679
     * <p>The default implementation of this method returns the class name of
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2680
     * this {@code Calendar} instance. Any subclasses that implement
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2681
     * LDML-defined calendar systems should override this method to return
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2682
     * appropriate calendar types.
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2683
     *
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2684
     * @return the LDML-defined calendar type or the class name of this
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2685
     *         {@code Calendar} instance
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2686
     * @since 1.8
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2687
     * @see <a href="Locale.html#def_extensions">Locale extensions</a>
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2688
     * @see Locale.Builder#setLocale(Locale)
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2689
     * @see Locale.Builder#setUnicodeLocaleKeyword(String, String)
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2690
     */
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2691
    public String getCalendarType() {
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2692
        return this.getClass().getName();
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2693
    }
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2694
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2695
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2696
     * Compares this {@code Calendar} to the specified
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2697
     * {@code Object}.  The result is {@code true} if and only if
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2698
     * the argument is a {@code Calendar} object of the same calendar
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2699
     * system that represents the same time value (millisecond offset from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2700
     * <a href="#Epoch">Epoch</a>) under the same
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2701
     * {@code Calendar} parameters as this object.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2702
     *
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2703
     * <p>The {@code Calendar} parameters are the values represented
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2704
     * by the {@code isLenient}, {@code getFirstDayOfWeek},
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2705
     * {@code getMinimalDaysInFirstWeek} and {@code getTimeZone}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2706
     * methods. If there is any difference in those parameters
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2707
     * between the two {@code Calendar}s, this method returns
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2708
     * {@code false}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2709
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2710
     * <p>Use the {@link #compareTo(Calendar) compareTo} method to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2711
     * compare only the time values.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2712
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2713
     * @param obj the object to compare with.
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2714
     * @return {@code true} if this object is equal to {@code obj};
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2715
     * {@code false} otherwise.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2716
     */
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2717
    @SuppressWarnings("EqualsWhichDoesntCheckParameterClass")
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2718
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2719
    public boolean equals(Object obj) {
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2720
        if (this == obj) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2721
            return true;
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2722
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2723
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2724
            Calendar that = (Calendar)obj;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2725
            return compareTo(getMillisOf(that)) == 0 &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2726
                lenient == that.lenient &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2727
                firstDayOfWeek == that.firstDayOfWeek &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2728
                minimalDaysInFirstWeek == that.minimalDaysInFirstWeek &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2729
                zone.equals(that.zone);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2730
        } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2731
            // Note: GregorianCalendar.computeTime throws
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2732
            // IllegalArgumentException if the ERA value is invalid
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2733
            // even it's in lenient mode.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2734
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2735
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2736
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2737
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2738
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2739
     * Returns a hash code for this calendar.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2740
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2741
     * @return a hash code value for this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2742
     * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2743
     */
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2744
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2745
    public int hashCode() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2746
        // 'otheritems' represents the hash code for the previous versions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2747
        int otheritems = (lenient ? 1 : 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2748
            | (firstDayOfWeek << 1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2749
            | (minimalDaysInFirstWeek << 4)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2750
            | (zone.hashCode() << 7);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2751
        long t = getMillisOf(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2752
        return (int) t ^ (int)(t >> 32) ^ otheritems;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2753
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2754
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2755
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2756
     * Returns whether this {@code Calendar} represents a time
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2757
     * before the time represented by the specified
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2758
     * {@code Object}. This method is equivalent to:
18156
edb590d448c5 8016217: More javadoc warnings
alanb
parents: 16481
diff changeset
  2759
     * <pre>{@code
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2760
     *         compareTo(when) < 0
18156
edb590d448c5 8016217: More javadoc warnings
alanb
parents: 16481
diff changeset
  2761
     * }</pre>
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2762
     * if and only if {@code when} is a {@code Calendar}
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2763
     * instance. Otherwise, the method returns {@code false}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2764
     *
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2765
     * @param when the {@code Object} to be compared
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2766
     * @return {@code true} if the time of this
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2767
     * {@code Calendar} is before the time represented by
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2768
     * {@code when}; {@code false} otherwise.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2769
     * @see     #compareTo(Calendar)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2770
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2771
    public boolean before(Object when) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2772
        return when instanceof Calendar
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2773
            && compareTo((Calendar)when) < 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2774
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2775
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2776
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2777
     * Returns whether this {@code Calendar} represents a time
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2778
     * after the time represented by the specified
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2779
     * {@code Object}. This method is equivalent to:
18156
edb590d448c5 8016217: More javadoc warnings
alanb
parents: 16481
diff changeset
  2780
     * <pre>{@code
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2781
     *         compareTo(when) > 0
18156
edb590d448c5 8016217: More javadoc warnings
alanb
parents: 16481
diff changeset
  2782
     * }</pre>
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2783
     * if and only if {@code when} is a {@code Calendar}
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2784
     * instance. Otherwise, the method returns {@code false}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2785
     *
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2786
     * @param when the {@code Object} to be compared
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2787
     * @return {@code true} if the time of this {@code Calendar} is
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2788
     * after the time represented by {@code when}; {@code false}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2789
     * otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2790
     * @see     #compareTo(Calendar)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2791
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2792
    public boolean after(Object when) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2793
        return when instanceof Calendar
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2794
            && compareTo((Calendar)when) > 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2795
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2796
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2797
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2798
     * Compares the time values (millisecond offsets from the <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2799
     * href="#Epoch">Epoch</a>) represented by two
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2800
     * {@code Calendar} objects.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2801
     *
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2802
     * @param anotherCalendar the {@code Calendar} to be compared.
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2803
     * @return the value {@code 0} if the time represented by the argument
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2804
     * is equal to the time represented by this {@code Calendar}; a value
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2805
     * less than {@code 0} if the time of this {@code Calendar} is
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2806
     * before the time represented by the argument; and a value greater than
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2807
     * {@code 0} if the time of this {@code Calendar} is after the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2808
     * time represented by the argument.
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2809
     * @throws    NullPointerException if the specified {@code Calendar} is
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2810
     *            {@code null}.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 57956
diff changeset
  2811
     * @throws    IllegalArgumentException if the time value of the
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2812
     * specified {@code Calendar} object can't be obtained due to
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2813
     * any invalid calendar values.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2814
     * @since   1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2815
     */
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  2816
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2817
    public int compareTo(Calendar anotherCalendar) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2818
        return compareTo(getMillisOf(anotherCalendar));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2819
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2820
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2821
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2822
     * Adds or subtracts the specified amount of time to the given calendar field,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2823
     * based on the calendar's rules. For example, to subtract 5 days from
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2824
     * the current time of the calendar, you can achieve it by calling:
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2825
     * <p>{@code add(Calendar.DAY_OF_MONTH, -5)}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2826
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2827
     * @param field the calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2828
     * @param amount the amount of date or time to be added to the field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2829
     * @see #roll(int,int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2830
     * @see #set(int,int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2831
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
  2832
    public abstract void add(int field, int amount);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2833
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2834
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2835
     * Adds or subtracts (up/down) a single unit of time on the given time
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2836
     * field without changing larger fields. For example, to roll the current
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2837
     * date up by one day, you can achieve it by calling:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2838
     * <p>roll(Calendar.DATE, true).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2839
     * When rolling on the year or Calendar.YEAR field, it will roll the year
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2840
     * value in the range between 1 and the value returned by calling
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2841
     * {@code getMaximum(Calendar.YEAR)}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2842
     * When rolling on the month or Calendar.MONTH field, other fields like
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2843
     * date might conflict and, need to be changed. For instance,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2844
     * rolling the month on the date 01/31/96 will result in 02/29/96.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2845
     * When rolling on the hour-in-day or Calendar.HOUR_OF_DAY field, it will
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2846
     * roll the hour value in the range between 0 and 23, which is zero-based.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2847
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2848
     * @param field the time field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2849
     * @param up indicates if the value of the specified time field is to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2850
     * rolled up or rolled down. Use true if rolling up, false otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2851
     * @see Calendar#add(int,int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2852
     * @see Calendar#set(int,int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2853
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
  2854
    public abstract void roll(int field, boolean up);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2855
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2856
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2857
     * Adds the specified (signed) amount to the specified calendar field
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2858
     * without changing larger fields.  A negative amount means to roll
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2859
     * down.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2860
     *
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2861
     * <p>NOTE:  This default implementation on {@code Calendar} just repeatedly calls the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2862
     * version of {@link #roll(int,boolean) roll()} that rolls by one unit.  This may not
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2863
     * always do the right thing.  For example, if the {@code DAY_OF_MONTH} field is 31,
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2864
     * rolling through February will leave it set to 28.  The {@code GregorianCalendar}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2865
     * version of this function takes care of this problem.  Other subclasses
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2866
     * should also provide overrides of this function that do the right thing.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2867
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2868
     * @param field the calendar field.
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2869
     * @param amount the signed amount to add to the calendar {@code field}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2870
     * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2871
     * @see #roll(int,boolean)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2872
     * @see #add(int,int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2873
     * @see #set(int,int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2874
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2875
    public void roll(int field, int amount)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2876
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2877
        while (amount > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2878
            roll(field, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2879
            amount--;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2880
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2881
        while (amount < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2882
            roll(field, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2883
            amount++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2884
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2885
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2886
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2887
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2888
     * Sets the time zone with the given time zone value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2889
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2890
     * @param value the given time zone.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2891
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2892
    public void setTimeZone(TimeZone value)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2893
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2894
        zone = value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2895
        sharedZone = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2896
        /* Recompute the fields from the time using the new zone.  This also
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2897
         * works if isTimeSet is false (after a call to set()).  In that case
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2898
         * the time will be computed from the fields using the new zone, then
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2899
         * the fields will get recomputed from that.  Consider the sequence of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2900
         * calls: cal.setTimeZone(EST); cal.set(HOUR, 1); cal.setTimeZone(PST).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2901
         * Is cal set to 1 o'clock EST or 1 o'clock PST?  Answer: PST.  More
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2902
         * generally, a call to setTimeZone() affects calls to set() BEFORE AND
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2903
         * AFTER it up to the next call to complete().
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2904
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2905
        areAllFieldsSet = areFieldsSet = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2906
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2907
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2908
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2909
     * Gets the time zone.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2910
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2911
     * @return the time zone object associated with this calendar.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2912
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2913
    public TimeZone getTimeZone()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2914
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2915
        // If the TimeZone object is shared by other Calendar instances, then
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2916
        // create a clone.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2917
        if (sharedZone) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2918
            zone = (TimeZone) zone.clone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2919
            sharedZone = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2920
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2921
        return zone;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2922
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2923
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2924
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2925
     * Returns the time zone (without cloning).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2926
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2927
    TimeZone getZone() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2928
        return zone;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2929
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2930
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2931
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2932
     * Sets the sharedZone flag to {@code shared}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2933
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2934
    void setZoneShared(boolean shared) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2935
        sharedZone = shared;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2936
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2937
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2938
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2939
     * Specifies whether or not date/time interpretation is to be lenient.  With
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2940
     * lenient interpretation, a date such as "February 942, 1996" will be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2941
     * treated as being equivalent to the 941st day after February 1, 1996.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2942
     * With strict (non-lenient) interpretation, such dates will cause an exception to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2943
     * thrown. The default is lenient.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2944
     *
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2945
     * @param lenient {@code true} if the lenient mode is to be turned
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2946
     * on; {@code false} if it is to be turned off.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2947
     * @see #isLenient()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2948
     * @see java.text.DateFormat#setLenient
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2949
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2950
    public void setLenient(boolean lenient)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2951
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2952
        this.lenient = lenient;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2953
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2954
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2955
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2956
     * Tells whether date/time interpretation is to be lenient.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2957
     *
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2958
     * @return {@code true} if the interpretation mode of this calendar is lenient;
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2959
     * {@code false} otherwise.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2960
     * @see #setLenient(boolean)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2961
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2962
    public boolean isLenient()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2963
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2964
        return lenient;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2965
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2966
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2967
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2968
     * Sets what the first day of the week is; e.g., {@code SUNDAY} in the U.S.,
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2969
     * {@code MONDAY} in France.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2970
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2971
     * @param value the given first day of the week.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2972
     * @see #getFirstDayOfWeek()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2973
     * @see #getMinimalDaysInFirstWeek()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2974
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2975
    public void setFirstDayOfWeek(int value)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2976
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2977
        if (firstDayOfWeek == value) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2978
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2979
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2980
        firstDayOfWeek = value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2981
        invalidateWeekFields();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2982
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2983
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2984
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2985
     * Gets what the first day of the week is; e.g., {@code SUNDAY} in the U.S.,
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  2986
     * {@code MONDAY} in France.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2987
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2988
     * @return the first day of the week.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2989
     * @see #setFirstDayOfWeek(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2990
     * @see #getMinimalDaysInFirstWeek()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2991
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2992
    public int getFirstDayOfWeek()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2993
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2994
        return firstDayOfWeek;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2995
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2996
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2997
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2998
     * Sets what the minimal days required in the first week of the year are;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2999
     * For example, if the first week is defined as one that contains the first
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3000
     * day of the first month of a year, call this method with value 1. If it
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3001
     * must be a full week, use value 7.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3002
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3003
     * @param value the given minimal days required in the first week
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3004
     * of the year.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3005
     * @see #getMinimalDaysInFirstWeek()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3006
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3007
    public void setMinimalDaysInFirstWeek(int value)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3008
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3009
        if (minimalDaysInFirstWeek == value) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3010
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3011
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3012
        minimalDaysInFirstWeek = value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3013
        invalidateWeekFields();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3014
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3015
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3016
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3017
     * Gets what the minimal days required in the first week of the year are;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3018
     * e.g., if the first week is defined as one that contains the first day
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3019
     * of the first month of a year, this method returns 1. If
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3020
     * the minimal days required must be a full week, this method
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3021
     * returns 7.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3022
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3023
     * @return the minimal days required in the first week of the year.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3024
     * @see #setMinimalDaysInFirstWeek(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3025
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3026
    public int getMinimalDaysInFirstWeek()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3027
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3028
        return minimalDaysInFirstWeek;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3029
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3030
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3031
    /**
6491
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3032
     * 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
  3033
     *
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3034
     * <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
  3035
     *
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3036
     * @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
  3037
     *         {@code false} otherwise.
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3038
     * @see #getWeekYear()
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3039
     * @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
  3040
     * @see #getWeeksInWeekYear()
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3041
     * @since 1.7
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3042
     */
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3043
    public boolean isWeekDateSupported() {
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3044
        return false;
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3045
    }
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3046
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3047
    /**
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3048
     * 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
  3049
     * 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
  3050
     * #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
  3051
     * 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
  3052
     *
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3053
     * <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
  3054
     * {@link UnsupportedOperationException}.
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3055
     *
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3056
     * @return the week year of this {@code Calendar}
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 57956
diff changeset
  3057
     * @throws    UnsupportedOperationException
6491
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3058
     *            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
  3059
     *            in this {@code Calendar}.
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3060
     * @see #isWeekDateSupported()
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3061
     * @see #getFirstDayOfWeek()
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3062
     * @see #getMinimalDaysInFirstWeek()
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3063
     * @since 1.7
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3064
     */
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3065
    public int getWeekYear() {
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3066
        throw new UnsupportedOperationException();
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3067
    }
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3068
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3069
    /**
28059
e576535359cc 8067377: My hobby: caning, then then canning, the the can-can
martin
parents: 25859
diff changeset
  3070
     * Sets the date of this {@code Calendar} with the given date
6491
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3071
     * 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
  3072
     *
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3073
     * <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
  3074
     * 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
  3075
     *
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3076
     * <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
  3077
     * 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
  3078
     * 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
  3079
     * 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
  3080
     *
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3081
     * <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
  3082
     * {@code UnsupportedOperationException}.
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3083
     *
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3084
     * @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
  3085
     * @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
  3086
     * @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
  3087
     *                   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
  3088
     *                   #SUNDAY}, ..., {@link #SATURDAY}.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 57956
diff changeset
  3089
     * @throws    IllegalArgumentException
6491
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3090
     *            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
  3091
     *            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
  3092
     *            with the given date specifiers in non-lenient mode
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 57956
diff changeset
  3093
     * @throws    UnsupportedOperationException
6491
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3094
     *            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
  3095
     *            {@code Calendar}.
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3096
     * @see #isWeekDateSupported()
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3097
     * @see #getFirstDayOfWeek()
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3098
     * @see #getMinimalDaysInFirstWeek()
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3099
     * @since 1.7
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3100
     */
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3101
    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
  3102
        throw new UnsupportedOperationException();
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3103
    }
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3104
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3105
    /**
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3106
     * 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
  3107
     * {@code Calendar}.
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3108
     *
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3109
     * <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
  3110
     * {@code UnsupportedOperationException}.
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3111
     *
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3112
     * @return the number of weeks in the week year.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 57956
diff changeset
  3113
     * @throws    UnsupportedOperationException
6491
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3114
     *            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
  3115
     *            {@code Calendar}.
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3116
     * @see #WEEK_OF_YEAR
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3117
     * @see #isWeekDateSupported()
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3118
     * @see #getWeekYear()
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3119
     * @see #getActualMaximum(int)
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3120
     * @since 1.7
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3121
     */
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3122
    public int getWeeksInWeekYear() {
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3123
        throw new UnsupportedOperationException();
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3124
    }
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3125
cd1bcc5057f4 4267450: (cal) API: Need public API to calculate, format and parse "year of week"
okutsu
parents: 6489
diff changeset
  3126
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3127
     * Returns the minimum value for the given calendar field of this
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  3128
     * {@code Calendar} instance. The minimum value is defined as
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3129
     * the smallest value returned by the {@link #get(int) get} method
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3130
     * for any possible time value.  The minimum value depends on
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3131
     * calendar system specific parameters of the instance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3132
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3133
     * @param field the calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3134
     * @return the minimum value for the given calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3135
     * @see #getMaximum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3136
     * @see #getGreatestMinimum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3137
     * @see #getLeastMaximum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3138
     * @see #getActualMinimum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3139
     * @see #getActualMaximum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3140
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
  3141
    public abstract int getMinimum(int field);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3142
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3143
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3144
     * Returns the maximum value for the given calendar field of this
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  3145
     * {@code Calendar} instance. The maximum value is defined as
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3146
     * the largest value returned by the {@link #get(int) get} method
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3147
     * for any possible time value. The maximum value depends on
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3148
     * calendar system specific parameters of the instance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3149
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3150
     * @param field the calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3151
     * @return the maximum value for the given calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3152
     * @see #getMinimum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3153
     * @see #getGreatestMinimum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3154
     * @see #getLeastMaximum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3155
     * @see #getActualMinimum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3156
     * @see #getActualMaximum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3157
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
  3158
    public abstract int getMaximum(int field);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3159
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3160
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3161
     * Returns the highest minimum value for the given calendar field
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  3162
     * of this {@code Calendar} instance. The highest minimum
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3163
     * value is defined as the largest value returned by {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3164
     * #getActualMinimum(int)} for any possible time value. The
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3165
     * greatest minimum value depends on calendar system specific
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3166
     * parameters of the instance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3167
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3168
     * @param field the calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3169
     * @return the highest minimum value for the given calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3170
     * @see #getMinimum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3171
     * @see #getMaximum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3172
     * @see #getLeastMaximum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3173
     * @see #getActualMinimum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3174
     * @see #getActualMaximum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3175
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
  3176
    public abstract int getGreatestMinimum(int field);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3177
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3178
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3179
     * Returns the lowest maximum value for the given calendar field
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  3180
     * of this {@code Calendar} instance. The lowest maximum
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3181
     * value is defined as the smallest value returned by {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3182
     * #getActualMaximum(int)} for any possible time value. The least
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3183
     * maximum value depends on calendar system specific parameters of
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  3184
     * the instance. For example, a {@code Calendar} for the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3185
     * Gregorian calendar system returns 28 for the
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  3186
     * {@code DAY_OF_MONTH} field, because the 28th is the last
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3187
     * day of the shortest month of this calendar, February in a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3188
     * common year.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3189
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3190
     * @param field the calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3191
     * @return the lowest maximum value for the given calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3192
     * @see #getMinimum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3193
     * @see #getMaximum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3194
     * @see #getGreatestMinimum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3195
     * @see #getActualMinimum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3196
     * @see #getActualMaximum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3197
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30655
diff changeset
  3198
    public abstract int getLeastMaximum(int field);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3199
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3200
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3201
     * Returns the minimum value that the specified calendar field
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  3202
     * could have, given the time value of this {@code Calendar}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3203
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3204
     * <p>The default implementation of this method uses an iterative
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3205
     * algorithm to determine the actual minimum value for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3206
     * calendar field. Subclasses should, if possible, override this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3207
     * with a more efficient implementation - in many cases, they can
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  3208
     * simply return {@code getMinimum()}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3209
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3210
     * @param field the calendar field
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3211
     * @return the minimum of the given calendar field for the time
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  3212
     * value of this {@code Calendar}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3213
     * @see #getMinimum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3214
     * @see #getMaximum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3215
     * @see #getGreatestMinimum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3216
     * @see #getLeastMaximum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3217
     * @see #getActualMaximum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3218
     * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3219
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3220
    public int getActualMinimum(int field) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3221
        int fieldValue = getGreatestMinimum(field);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3222
        int endValue = getMinimum(field);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3223
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3224
        // if we know that the minimum value is always the same, just return it
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3225
        if (fieldValue == endValue) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3226
            return fieldValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3227
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3228
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3229
        // clone the calendar so we don't mess with the real one, and set it to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3230
        // accept anything for the field values
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3231
        Calendar work = (Calendar)this.clone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3232
        work.setLenient(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3233
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3234
        // now try each value from getLeastMaximum() to getMaximum() one by one until
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3235
        // we get a value that normalizes to another value.  The last value that
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3236
        // normalizes to itself is the actual minimum for the current date
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3237
        int result = fieldValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3238
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3239
        do {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3240
            work.set(field, fieldValue);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3241
            if (work.get(field) != fieldValue) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3242
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3243
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3244
                result = fieldValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3245
                fieldValue--;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3246
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3247
        } while (fieldValue >= endValue);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3248
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3249
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3250
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3251
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3252
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3253
     * Returns the maximum value that the specified calendar field
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3254
     * could have, given the time value of this
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  3255
     * {@code Calendar}. For example, the actual maximum value of
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  3256
     * the {@code MONTH} field is 12 in some years, and 13 in
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3257
     * other years in the Hebrew calendar system.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3258
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3259
     * <p>The default implementation of this method uses an iterative
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3260
     * algorithm to determine the actual maximum value for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3261
     * calendar field. Subclasses should, if possible, override this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3262
     * with a more efficient implementation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3263
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3264
     * @param field the calendar field
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3265
     * @return the maximum of the given calendar field for the time
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  3266
     * value of this {@code Calendar}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3267
     * @see #getMinimum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3268
     * @see #getMaximum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3269
     * @see #getGreatestMinimum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3270
     * @see #getLeastMaximum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3271
     * @see #getActualMinimum(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3272
     * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3273
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3274
    public int getActualMaximum(int field) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3275
        int fieldValue = getLeastMaximum(field);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3276
        int endValue = getMaximum(field);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3277
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3278
        // if we know that the maximum value is always the same, just return it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3279
        if (fieldValue == endValue) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3280
            return fieldValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3281
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3282
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3283
        // clone the calendar so we don't mess with the real one, and set it to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3284
        // accept anything for the field values.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3285
        Calendar work = (Calendar)this.clone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3286
        work.setLenient(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3287
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3288
        // if we're counting weeks, set the day of the week to Sunday.  We know the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3289
        // last week of a month or year will contain the first day of the week.
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  3290
        if (field == WEEK_OF_YEAR || field == WEEK_OF_MONTH) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3291
            work.set(DAY_OF_WEEK, firstDayOfWeek);
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  3292
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3293
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3294
        // now try each value from getLeastMaximum() to getMaximum() one by one until
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3295
        // we get a value that normalizes to another value.  The last value that
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3296
        // normalizes to itself is the actual maximum for the current date
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3297
        int result = fieldValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3298
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3299
        do {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3300
            work.set(field, fieldValue);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3301
            if (work.get(field) != fieldValue) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3302
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3303
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3304
                result = fieldValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3305
                fieldValue++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3306
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3307
        } while (fieldValue <= endValue);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3308
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3309
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3310
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3311
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3312
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3313
     * Creates and returns a copy of this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3314
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3315
     * @return a copy of this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3316
     */
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  3317
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3318
    public Object clone()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3319
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3320
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3321
            Calendar other = (Calendar) super.clone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3322
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3323
            other.fields = new int[FIELD_COUNT];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3324
            other.isSet = new boolean[FIELD_COUNT];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3325
            other.stamp = new int[FIELD_COUNT];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3326
            for (int i = 0; i < FIELD_COUNT; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3327
                other.fields[i] = fields[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3328
                other.stamp[i] = stamp[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3329
                other.isSet[i] = isSet[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3330
            }
51660
c3ad012182b1 8210142: java.util.Calendar.clone() doesn't respect sharedZone flag
naoto
parents: 48251
diff changeset
  3331
            if (!sharedZone) {
c3ad012182b1 8210142: java.util.Calendar.clone() doesn't respect sharedZone flag
naoto
parents: 48251
diff changeset
  3332
                other.zone = (TimeZone) zone.clone();
c3ad012182b1 8210142: java.util.Calendar.clone() doesn't respect sharedZone flag
naoto
parents: 48251
diff changeset
  3333
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3334
            return other;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3335
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3336
        catch (CloneNotSupportedException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3337
            // this shouldn't happen, since we are Cloneable
10419
12c063b39232 7084245: Update usages of InternalError to use exception chaining
sherman
parents: 8521
diff changeset
  3338
            throw new InternalError(e);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3339
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3340
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3341
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3342
    private static final String[] FIELD_NAME = {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3343
        "ERA", "YEAR", "MONTH", "WEEK_OF_YEAR", "WEEK_OF_MONTH", "DAY_OF_MONTH",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3344
        "DAY_OF_YEAR", "DAY_OF_WEEK", "DAY_OF_WEEK_IN_MONTH", "AM_PM", "HOUR",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3345
        "HOUR_OF_DAY", "MINUTE", "SECOND", "MILLISECOND", "ZONE_OFFSET",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3346
        "DST_OFFSET"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3347
    };
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3348
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3349
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3350
     * Returns the name of the specified calendar field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3351
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3352
     * @param field the calendar field
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3353
     * @return the calendar field name
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  3354
     * @throws    IndexOutOfBoundsException if {@code field} is negative,
30655
d83f50188ca9 8080422: some docs cleanup for core libs
avstepan
parents: 29986
diff changeset
  3355
     * equal to or greater than {@code FIELD_COUNT}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3356
     */
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  3357
    static String getFieldName(int field) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3358
        return FIELD_NAME[field];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3359
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3360
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3361
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3362
     * Return a string representation of this calendar. This method
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3363
     * is intended to be used only for debugging purposes, and the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3364
     * format of the returned string may vary between implementations.
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  3365
     * The returned string may be empty but may not be {@code null}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3366
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3367
     * @return  a string representation of this calendar.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3368
     */
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  3369
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3370
    public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3371
        // NOTE: BuddhistCalendar.toString() interprets the string
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3372
        // produced by this method so that the Gregorian year number
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3373
        // is substituted by its B.E. year value. It relies on
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3374
        // "...,YEAR=<year>,..." or "...,YEAR=?,...".
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3375
        StringBuilder buffer = new StringBuilder(800);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3376
        buffer.append(getClass().getName()).append('[');
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3377
        appendValue(buffer, "time", isTimeSet, time);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3378
        buffer.append(",areFieldsSet=").append(areFieldsSet);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3379
        buffer.append(",areAllFieldsSet=").append(areAllFieldsSet);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3380
        buffer.append(",lenient=").append(lenient);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3381
        buffer.append(",zone=").append(zone);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3382
        appendValue(buffer, ",firstDayOfWeek", true, (long) firstDayOfWeek);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3383
        appendValue(buffer, ",minimalDaysInFirstWeek", true, (long) minimalDaysInFirstWeek);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3384
        for (int i = 0; i < FIELD_COUNT; ++i) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3385
            buffer.append(',');
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3386
            appendValue(buffer, FIELD_NAME[i], isSet(i), (long) fields[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3387
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3388
        buffer.append(']');
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3389
        return buffer.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3390
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3391
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3392
    // =======================privates===============================
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3393
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  3394
    private static void appendValue(StringBuilder sb, String item, boolean valid, long value) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3395
        sb.append(item).append('=');
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3396
        if (valid) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3397
            sb.append(value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3398
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3399
            sb.append('?');
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3400
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3401
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3402
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3403
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3404
     * Both firstDayOfWeek and minimalDaysInFirstWeek are locale-dependent.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3405
     * They are used to figure out the week count for a specific date for
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3406
     * a given locale. These must be set when a Calendar is constructed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3407
     * @param desiredLocale the given locale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3408
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3409
    private void setWeekCountData(Locale desiredLocale)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3410
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3411
        /* try to get the Locale data from the cache */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3412
        int[] data = cachedLocaleData.get(desiredLocale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3413
        if (data == null) {  /* cache miss */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3414
            data = new int[2];
14502
d63fed06fed4 8000986: Split java.util.spi.CalendarDataProvider into week parameters and field names portions
okutsu
parents: 14342
diff changeset
  3415
            data[0] = CalendarDataUtility.retrieveFirstDayOfWeek(desiredLocale);
d63fed06fed4 8000986: Split java.util.spi.CalendarDataProvider into week parameters and field names portions
okutsu
parents: 14342
diff changeset
  3416
            data[1] = CalendarDataUtility.retrieveMinimalDaysInFirstWeek(desiredLocale);
7003
7d8d9506b4ee 6991380: (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
okutsu
parents: 6501
diff changeset
  3417
            cachedLocaleData.putIfAbsent(desiredLocale, data);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3418
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3419
        firstDayOfWeek = data[0];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3420
        minimalDaysInFirstWeek = data[1];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3421
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3422
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3423
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3424
     * Recomputes the time and updates the status fields isTimeSet
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3425
     * and areFieldsSet.  Callers should check isTimeSet and only
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3426
     * call this method if isTimeSet is false.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3427
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3428
    private void updateTime() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3429
        computeTime();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3430
        // The areFieldsSet and areAllFieldsSet values are no longer
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3431
        // controlled here (as of 1.5).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3432
        isTimeSet = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3433
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3434
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3435
    private int compareTo(long t) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3436
        long thisTime = getMillisOf(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3437
        return (thisTime > t) ? 1 : (thisTime == t) ? 0 : -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3438
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3439
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  3440
    private static long getMillisOf(Calendar calendar) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3441
        if (calendar.isTimeSet) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3442
            return calendar.time;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3443
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3444
        Calendar cal = (Calendar) calendar.clone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3445
        cal.setLenient(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3446
        return cal.getTimeInMillis();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3447
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3448
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3449
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3450
     * Adjusts the stamp[] values before nextStamp overflow. nextStamp
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3451
     * is set to the next stamp value upon the return.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3452
     */
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  3453
    private void adjustStamp() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3454
        int max = MINIMUM_USER_STAMP;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3455
        int newStamp = MINIMUM_USER_STAMP;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3456
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3457
        for (;;) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3458
            int min = Integer.MAX_VALUE;
22078
bdec5d53e98c 8030851: Update code in java.util to use newer language features
psandoz
parents: 20502
diff changeset
  3459
            for (int v : stamp) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3460
                if (v >= newStamp && min > v) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3461
                    min = v;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3462
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3463
                if (max < v) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3464
                    max = v;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3465
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3466
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3467
            if (max != min && min == Integer.MAX_VALUE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3468
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3469
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3470
            for (int i = 0; i < stamp.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3471
                if (stamp[i] == min) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3472
                    stamp[i] = newStamp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3473
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3474
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3475
            newStamp++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3476
            if (min == max) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3477
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3478
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3479
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3480
        nextStamp = newStamp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3481
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3482
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3483
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3484
     * Sets the WEEK_OF_MONTH and WEEK_OF_YEAR fields to new values with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3485
     * new parameter value if they have been calculated internally.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3486
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3487
    private void invalidateWeekFields()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3488
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3489
        if (stamp[WEEK_OF_MONTH] != COMPUTED &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3490
            stamp[WEEK_OF_YEAR] != COMPUTED) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3491
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3492
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3493
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3494
        // We have to check the new values of these fields after changing
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3495
        // firstDayOfWeek and/or minimalDaysInFirstWeek. If the field values
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3496
        // have been changed, then set the new values. (4822110)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3497
        Calendar cal = (Calendar) clone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3498
        cal.setLenient(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3499
        cal.clear(WEEK_OF_MONTH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3500
        cal.clear(WEEK_OF_YEAR);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3501
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3502
        if (stamp[WEEK_OF_MONTH] == COMPUTED) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3503
            int weekOfMonth = cal.get(WEEK_OF_MONTH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3504
            if (fields[WEEK_OF_MONTH] != weekOfMonth) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3505
                fields[WEEK_OF_MONTH] = weekOfMonth;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3506
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3507
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3508
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3509
        if (stamp[WEEK_OF_YEAR] == COMPUTED) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3510
            int weekOfYear = cal.get(WEEK_OF_YEAR);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3511
            if (fields[WEEK_OF_YEAR] != weekOfYear) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3512
                fields[WEEK_OF_YEAR] = weekOfYear;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3513
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3514
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3515
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3516
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3517
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3518
     * Save the state of this object to a stream (i.e., serialize it).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3519
     *
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  3520
     * Ideally, {@code Calendar} would only write out its state data and
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3521
     * the current time, and not write any field data out, such as
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  3522
     * {@code fields[]}, {@code isTimeSet}, {@code areFieldsSet},
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  3523
     * and {@code isSet[]}.  {@code nextStamp} also should not be part
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3524
     * of the persistent state. Unfortunately, this didn't happen before JDK 1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3525
     * shipped. To be compatible with JDK 1.1, we will always have to write out
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
  3526
     * the field values and state flags.  However, {@code nextStamp} can be
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3527
     * removed from the serialization stream; this will probably happen in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3528
     * near future.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3529
     */
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 57549
diff changeset
  3530
    @java.io.Serial
11681
9a1076231db7 7017458: (cal) Multithreaded deserialization of Calendar leads to ClassCastException
peytoia
parents: 10419
diff changeset
  3531
    private synchronized void writeObject(ObjectOutputStream stream)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3532
         throws IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3533
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3534
        // Try to compute the time correctly, for the future (stream
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3535
        // version 2) in which we don't write out fields[] or isSet[].
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3536
        if (!isTimeSet) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3537
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3538
                updateTime();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3539
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3540
            catch (IllegalArgumentException e) {}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3541
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3542
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3543
        // If this Calendar has a ZoneInfo, save it and set a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3544
        // SimpleTimeZone equivalent (as a single DST schedule) for
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3545
        // backward compatibility.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3546
        TimeZone savedZone = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3547
        if (zone instanceof ZoneInfo) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3548
            SimpleTimeZone stz = ((ZoneInfo)zone).getLastRuleInstance();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3549
            if (stz == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3550
                stz = new SimpleTimeZone(zone.getRawOffset(), zone.getID());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3551
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3552
            savedZone = zone;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3553
            zone = stz;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3554
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3555
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3556
        // Write out the 1.1 FCS object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3557
        stream.defaultWriteObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3558
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3559
        // Write out the ZoneInfo object
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3560
        // 4802409: we write out even if it is null, a temporary workaround
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3561
        // the real fix for bug 4844924 in corba-iiop
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3562
        stream.writeObject(savedZone);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3563
        if (savedZone != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3564
            zone = savedZone;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3565
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3566
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3567
2599
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  3568
    private static class CalendarAccessControlContext {
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  3569
        private static final AccessControlContext INSTANCE;
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  3570
        static {
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  3571
            RuntimePermission perm = new RuntimePermission("accessClassInPackage.sun.util.calendar");
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  3572
            PermissionCollection perms = perm.newPermissionCollection();
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  3573
            perms.add(perm);
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  3574
            INSTANCE = new AccessControlContext(new ProtectionDomain[] {
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  3575
                                                    new ProtectionDomain(null, perms)
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  3576
                                                });
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  3577
        }
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  3578
        private CalendarAccessControlContext() {
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  3579
        }
2599
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  3580
    }
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  3581
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3582
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3583
     * Reconstitutes this object from a stream (i.e., deserialize it).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3584
     */
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 57549
diff changeset
  3585
    @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3586
    private void readObject(ObjectInputStream stream)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3587
         throws IOException, ClassNotFoundException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3588
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3589
        final ObjectInputStream input = stream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3590
        input.defaultReadObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3591
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3592
        stamp = new int[FIELD_COUNT];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3593
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3594
        // Starting with version 2 (not implemented yet), we expect that
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3595
        // fields[], isSet[], isTimeSet, and areFieldsSet may not be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3596
        // streamed out anymore.  We expect 'time' to be correct.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3597
        if (serialVersionOnStream >= 2)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3598
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3599
            isTimeSet = true;
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  3600
            if (fields == null) {
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  3601
                fields = new int[FIELD_COUNT];
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  3602
            }
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  3603
            if (isSet == null) {
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  3604
                isSet = new boolean[FIELD_COUNT];
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  3605
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3606
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3607
        else if (serialVersionOnStream >= 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3608
        {
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  3609
            for (int i=0; i<FIELD_COUNT; ++i) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3610
                stamp[i] = isSet[i] ? COMPUTED : UNSET;
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  3611
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3612
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3613
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3614
        serialVersionOnStream = currentSerialVersion;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3615
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3616
        // If there's a ZoneInfo object, use it for zone.
2599
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  3617
        ZoneInfo zi = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3618
        try {
2599
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  3619
            zi = AccessController.doPrivileged(
29986
97167d851fc4 8078467: Update core libraries to use diamond with anonymous classes
darcy
parents: 29720
diff changeset
  3620
                    new PrivilegedExceptionAction<>() {
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 12448
diff changeset
  3621
                        @Override
2599
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  3622
                        public ZoneInfo run() throws Exception {
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  3623
                            return (ZoneInfo) input.readObject();
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  3624
                        }
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  3625
                    },
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  3626
                    CalendarAccessControlContext.INSTANCE);
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  3627
        } catch (PrivilegedActionException pae) {
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  3628
            Exception e = pae.getException();
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  3629
            if (!(e instanceof OptionalDataException)) {
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  3630
                if (e instanceof RuntimeException) {
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  3631
                    throw (RuntimeException) e;
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  3632
                } else if (e instanceof IOException) {
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  3633
                    throw (IOException) e;
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  3634
                } else if (e instanceof ClassNotFoundException) {
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  3635
                    throw (ClassNotFoundException) e;
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  3636
                }
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  3637
                throw new RuntimeException(e);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3638
            }
2599
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  3639
        }
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  3640
        if (zi != null) {
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  3641
            zone = zi;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3642
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3643
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3644
        // If the deserialized object has a SimpleTimeZone, try to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3645
        // replace it with a ZoneInfo equivalent (as of 1.4) in order
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3646
        // to be compatible with the SimpleTimeZone-based
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3647
        // implementation as much as possible.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3648
        if (zone instanceof SimpleTimeZone) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3649
            String id = zone.getID();
2599
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  3650
            TimeZone tz = TimeZone.getTimeZone(id);
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  3651
            if (tz != null && tz.hasSameRules(zone) && tz.getID().equals(id)) {
593d7b0502e2 6734167: Calendar.readObject allows elevation of privileges
okutsu
parents: 2
diff changeset
  3652
                zone = tz;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3653
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3654
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3655
    }
15658
55b829ca2334 8007392: JSR 310: DateTime API Updates
sherman
parents: 15280
diff changeset
  3656
55b829ca2334 8007392: JSR 310: DateTime API Updates
sherman
parents: 15280
diff changeset
  3657
    /**
55b829ca2334 8007392: JSR 310: DateTime API Updates
sherman
parents: 15280
diff changeset
  3658
     * Converts this object to an {@link Instant}.
55b829ca2334 8007392: JSR 310: DateTime API Updates
sherman
parents: 15280
diff changeset
  3659
     * <p>
55b829ca2334 8007392: JSR 310: DateTime API Updates
sherman
parents: 15280
diff changeset
  3660
     * The conversion creates an {@code Instant} that represents the
55b829ca2334 8007392: JSR 310: DateTime API Updates
sherman
parents: 15280
diff changeset
  3661
     * same point on the time-line as this {@code Calendar}.
55b829ca2334 8007392: JSR 310: DateTime API Updates
sherman
parents: 15280
diff changeset
  3662
     *
55b829ca2334 8007392: JSR 310: DateTime API Updates
sherman
parents: 15280
diff changeset
  3663
     * @return the instant representing the same point on the time-line
55b829ca2334 8007392: JSR 310: DateTime API Updates
sherman
parents: 15280
diff changeset
  3664
     * @since 1.8
55b829ca2334 8007392: JSR 310: DateTime API Updates
sherman
parents: 15280
diff changeset
  3665
     */
55b829ca2334 8007392: JSR 310: DateTime API Updates
sherman
parents: 15280
diff changeset
  3666
    public final Instant toInstant() {
55b829ca2334 8007392: JSR 310: DateTime API Updates
sherman
parents: 15280
diff changeset
  3667
        return Instant.ofEpochMilli(getTimeInMillis());
55b829ca2334 8007392: JSR 310: DateTime API Updates
sherman
parents: 15280
diff changeset
  3668
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3669
}