Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-01-08 10:31:12

0001 // © 2016 and later: Unicode, Inc. and others.
0002 // License & terms of use: http://www.unicode.org/copyright.html
0003 /*
0004 ********************************************************************************
0005 *   Copyright (C) 1997-2014, International Business Machines
0006 *   Corporation and others.  All Rights Reserved.
0007 ********************************************************************************
0008 *
0009 * File CALENDAR.H
0010 *
0011 * Modification History:
0012 *
0013 *   Date        Name        Description
0014 *   04/22/97    aliu        Expanded and corrected comments and other header
0015 *                           contents.
0016 *   05/01/97    aliu        Made equals(), before(), after() arguments const.
0017 *   05/20/97    aliu        Replaced fAreFieldsSet with fAreFieldsInSync and
0018 *                           fAreAllFieldsSet.
0019 *   07/27/98    stephen     Sync up with JDK 1.2
0020 *   11/15/99    weiv        added YEAR_WOY and DOW_LOCAL
0021 *                           to EDateFields
0022 *    8/19/2002  srl         Removed Javaisms
0023 *   11/07/2003  srl         Update, clean up documentation.
0024 ********************************************************************************
0025 */
0026 
0027 #ifndef CALENDAR_H
0028 #define CALENDAR_H
0029 
0030 #include "unicode/utypes.h"
0031 
0032 #if U_SHOW_CPLUSPLUS_API
0033 
0034 /**
0035  * \file
0036  * \brief C++ API: Calendar object
0037  */
0038 #if !UCONFIG_NO_FORMATTING
0039 
0040 #include "unicode/uobject.h"
0041 #include "unicode/locid.h"
0042 #include "unicode/timezone.h"
0043 #include "unicode/ucal.h"
0044 #include "unicode/umisc.h"
0045 
0046 U_NAMESPACE_BEGIN
0047 
0048 class ICUServiceFactory;
0049 
0050 // Do not conditionalize the following with #ifndef U_HIDE_INTERNAL_API,
0051 // it is a return type for a virtual method (@internal)
0052 /**
0053  * @internal
0054  */
0055 typedef int32_t UFieldResolutionTable[12][8];
0056 
0057 class BasicTimeZone;
0058 /**
0059  * `Calendar` is an abstract base class for converting between
0060  * a `UDate` object and a set of integer fields such as
0061  * `YEAR`, `MONTH`, `DAY`, `HOUR`, and so on.
0062  * (A `UDate` object represents a specific instant in
0063  * time with millisecond precision. See UDate
0064  * for information about the `UDate` class.)
0065  *
0066  * Subclasses of `Calendar` interpret a `UDate`
0067  * according to the rules of a specific calendar system.
0068  * The most commonly used subclass of `Calendar` is
0069  * `GregorianCalendar`. Other subclasses could represent
0070  * the various types of lunar calendars in use in many parts of the world.
0071  *
0072  * **NOTE**: (ICU 2.6) The subclass interface should be considered unstable -
0073  * it WILL change.
0074  *
0075  * Like other locale-sensitive classes, `Calendar` provides a
0076  * static method, `createInstance`, for getting a generally useful
0077  * object of this type. `Calendar`'s `createInstance` method
0078  * returns the appropriate `Calendar` subclass whose
0079  * time fields have been initialized with the current date and time:
0080  *
0081  *     Calendar *rightNow = Calendar::createInstance(errCode);
0082  *
0083  * A `Calendar` object can produce all the time field values
0084  * needed to implement the date-time formatting for a particular language
0085  * and calendar style (for example, Japanese-Gregorian, Japanese-Traditional).
0086  *
0087  * When computing a `UDate` from time fields, some special circumstances
0088  * may arise: there may be insufficient information to compute the
0089  * `UDate` (such as only year and month but no day in the month),
0090  * there may be inconsistent information (such as "Tuesday, July 15, 1996"
0091  * -- July 15, 1996 is actually a Monday), or the input time might be ambiguous
0092  * because of time zone transition.
0093  *
0094  * **Insufficient information.** The calendar will use default
0095  * information to specify the missing fields. This may vary by calendar; for
0096  * the Gregorian calendar, the default for a field is the same as that of the
0097  * start of the epoch: i.e., YEAR = 1970, MONTH = JANUARY, DATE = 1, etc.
0098  *
0099  * **Inconsistent information.** If fields conflict, the calendar
0100  * will give preference to fields set more recently. For example, when
0101  * determining the day, the calendar will look for one of the following
0102  * combinations of fields.  The most recent combination, as determined by the
0103  * most recently set single field, will be used.
0104  *
0105  *     MONTH + DAY_OF_MONTH
0106  *     MONTH + WEEK_OF_MONTH + DAY_OF_WEEK
0107  *     MONTH + DAY_OF_WEEK_IN_MONTH + DAY_OF_WEEK
0108  *     DAY_OF_YEAR
0109  *     DAY_OF_WEEK + WEEK_OF_YEAR
0110  *
0111  * For the time of day:
0112  *
0113  *     HOUR_OF_DAY
0114  *     AM_PM + HOUR
0115  *
0116  * **Ambiguous Wall Clock Time.** When time offset from UTC has
0117  * changed, it produces an ambiguous time slot around the transition. For example,
0118  * many US locations observe daylight saving time. On the date switching to daylight
0119  * saving time in US, wall clock time jumps from 12:59 AM (standard) to 2:00 AM
0120  * (daylight). Therefore, wall clock time from 1:00 AM to 1:59 AM do not exist on
0121  * the date. When the input wall time fall into this missing time slot, the ICU
0122  * Calendar resolves the time using the UTC offset before the transition by default.
0123  * In this example, 1:30 AM is interpreted as 1:30 AM standard time (non-exist),
0124  * so the final result will be 2:30 AM daylight time.
0125  *
0126  * On the date switching back to standard time, wall clock time is moved back one
0127  * hour at 2:00 AM. So wall clock time from 1:00 AM to 1:59 AM occur twice. In this
0128  * case, the ICU Calendar resolves the time using the UTC offset after the transition
0129  * by default. For example, 1:30 AM on the date is resolved as 1:30 AM standard time.
0130  *
0131  * Ambiguous wall clock time resolution behaviors can be customized by Calendar APIs
0132  * {@link #setRepeatedWallTimeOption} and {@link #setSkippedWallTimeOption}.
0133  * These methods are available in ICU 49 or later versions.
0134  *
0135  * **Note:** for some non-Gregorian calendars, different
0136  * fields may be necessary for complete disambiguation. For example, a full
0137  * specification of the historical Arabic astronomical calendar requires year,
0138  * month, day-of-month *and* day-of-week in some cases.
0139  *
0140  * **Note:** There are certain possible ambiguities in
0141  * interpretation of certain singular times, which are resolved in the
0142  * following ways:
0143  *
0144  *   1. 24:00:00 "belongs" to the following day. That is,
0145  *      23:59 on Dec 31, 1969 < 24:00 on Jan 1, 1970 < 24:01:00 on Jan 1, 1970
0146  *   2. Although historically not precise, midnight also belongs to "am",
0147  *      and noon belongs to "pm", so on the same day,
0148  *      12:00 am (midnight) < 12:01 am, and 12:00 pm (noon) < 12:01 pm
0149  *
0150  * The date or time format strings are not part of the definition of a
0151  * calendar, as those must be modifiable or overridable by the user at
0152  * runtime. Use `DateFormat` to format dates.
0153  *
0154  * `Calendar` provides an API for field "rolling", where fields
0155  * can be incremented or decremented, but wrap around. For example, rolling the
0156  * month up in the date December 12, **1996** results in
0157  * January 12, **1996**.
0158  *
0159  * `Calendar` also provides a date arithmetic function for
0160  * adding the specified (signed) amount of time to a particular time field.
0161  * For example, subtracting 5 days from the date `September 12, 1996`
0162  * results in `September 7, 1996`.
0163  *
0164  * ***Supported range***
0165  *
0166  * The allowable range of `Calendar` has been narrowed. `GregorianCalendar` used
0167  * to attempt to support the range of dates with millisecond values from
0168  * `Long.MIN_VALUE` to `Long.MAX_VALUE`. The new `Calendar` protocol specifies the
0169  * maximum range of supportable dates as those having Julian day numbers
0170  * of `-0x7F000000` to `+0x7F000000`. This corresponds to years from ~5,800,000 BCE
0171  * to ~5,800,000 CE. Programmers should use the protected constants in `Calendar` to
0172  * specify an extremely early or extremely late date.
0173  *
0174  * <p>
0175  * The Japanese calendar uses a combination of era name and year number.
0176  * When an emperor of Japan abdicates and a new emperor ascends the throne,
0177  * a new era is declared and year number is reset to 1. Even if the date of
0178  * abdication is scheduled ahead of time, the new era name might not be
0179  * announced until just before the date. In such case, ICU4C may include
0180  * a start date of future era without actual era name, but not enabled
0181  * by default. ICU4C users who want to test the behavior of the future era
0182  * can enable the tentative era by:
0183  * <ul>
0184  * <li>Environment variable <code>ICU_ENABLE_TENTATIVE_ERA=true</code>.</li>
0185  * </ul>
0186  *
0187  * @stable ICU 2.0
0188  */
0189 class U_I18N_API Calendar : public UObject {
0190 public:
0191 #ifndef U_FORCE_HIDE_DEPRECATED_API
0192     /**
0193      * Field IDs for date and time. Used to specify date/time fields. ERA is calendar
0194      * specific. Example ranges given are for illustration only; see specific Calendar
0195      * subclasses for actual ranges.
0196      * @deprecated ICU 2.6. Use C enum UCalendarDateFields defined in ucal.h
0197      */
0198     enum EDateFields {
0199 #ifndef U_HIDE_DEPRECATED_API
0200 /*
0201  * ERA may be defined on other platforms. To avoid any potential problems undefined it here.
0202  */
0203 #ifdef ERA
0204 #undef ERA
0205 #endif
0206         ERA,                  // Example: 0..1
0207         YEAR,                 // Example: 1..big number
0208         MONTH,                // Example: 0..11
0209         WEEK_OF_YEAR,         // Example: 1..53
0210         WEEK_OF_MONTH,        // Example: 1..4
0211         DATE,                 // Example: 1..31
0212         DAY_OF_YEAR,          // Example: 1..365
0213         DAY_OF_WEEK,          // Example: 1..7
0214         DAY_OF_WEEK_IN_MONTH, // Example: 1..4, may be specified as -1
0215         AM_PM,                // Example: 0..1
0216         HOUR,                 // Example: 0..11
0217         HOUR_OF_DAY,          // Example: 0..23
0218         MINUTE,               // Example: 0..59
0219         SECOND,               // Example: 0..59
0220         MILLISECOND,          // Example: 0..999
0221         ZONE_OFFSET,          // Example: -12*U_MILLIS_PER_HOUR..12*U_MILLIS_PER_HOUR
0222         DST_OFFSET,           // Example: 0 or U_MILLIS_PER_HOUR
0223         YEAR_WOY,             // 'Y' Example: 1..big number - Year of Week of Year
0224         DOW_LOCAL,            // 'e' Example: 1..7 - Day of Week / Localized
0225 
0226         EXTENDED_YEAR,
0227         JULIAN_DAY,
0228         MILLISECONDS_IN_DAY,
0229         IS_LEAP_MONTH,
0230 
0231         FIELD_COUNT = UCAL_FIELD_COUNT // See ucal.h for other fields.
0232 #endif /* U_HIDE_DEPRECATED_API */
0233     };
0234 #endif  // U_FORCE_HIDE_DEPRECATED_API
0235 
0236 #ifndef U_HIDE_DEPRECATED_API
0237     /**
0238      * Useful constant for days of week. Note: Calendar day-of-week is 1-based. Clients
0239      * who create locale resources for the field of first-day-of-week should be aware of
0240      * this. For instance, in US locale, first-day-of-week is set to 1, i.e., SUNDAY.
0241      * @deprecated ICU 2.6. Use C enum UCalendarDaysOfWeek defined in ucal.h
0242      */
0243     enum EDaysOfWeek {
0244         SUNDAY = 1,
0245         MONDAY,
0246         TUESDAY,
0247         WEDNESDAY,
0248         THURSDAY,
0249         FRIDAY,
0250         SATURDAY
0251     };
0252 
0253     /**
0254      * Useful constants for month. Note: Calendar month is 0-based.
0255      * @deprecated ICU 2.6. Use C enum UCalendarMonths defined in ucal.h
0256      */
0257     enum EMonths {
0258         JANUARY,
0259         FEBRUARY,
0260         MARCH,
0261         APRIL,
0262         MAY,
0263         JUNE,
0264         JULY,
0265         AUGUST,
0266         SEPTEMBER,
0267         OCTOBER,
0268         NOVEMBER,
0269         DECEMBER,
0270         UNDECIMBER
0271     };
0272 
0273     /**
0274      * Useful constants for hour in 12-hour clock. Used in GregorianCalendar.
0275      * @deprecated ICU 2.6. Use C enum UCalendarAMPMs defined in ucal.h
0276      */
0277     enum EAmpm {
0278         AM,
0279         PM
0280     };
0281 #endif  /* U_HIDE_DEPRECATED_API */
0282 
0283     /**
0284      * destructor
0285      * @stable ICU 2.0
0286      */
0287     virtual ~Calendar();
0288 
0289     /**
0290      * Create and return a polymorphic copy of this calendar.
0291      *
0292      * @return    a polymorphic copy of this calendar.
0293      * @stable ICU 2.0
0294      */
0295     virtual Calendar* clone() const = 0;
0296 
0297     /**
0298      * Creates a Calendar using the default timezone and locale. Clients are responsible
0299      * for deleting the object returned.
0300      *
0301      * @param success  Indicates the success/failure of Calendar creation. Filled in
0302      *                 with U_ZERO_ERROR if created successfully, set to a failure result
0303      *                 otherwise. U_MISSING_RESOURCE_ERROR will be returned if the resource data
0304      *                 requests a calendar type which has not been installed.
0305      * @return         A Calendar if created successfully. nullptr otherwise.
0306      * @stable ICU 2.0
0307      */
0308     static Calendar* U_EXPORT2 createInstance(UErrorCode& success);
0309 
0310     /**
0311      * Creates a Calendar using the given timezone and the default locale.
0312      * The Calendar takes ownership of zoneToAdopt; the
0313      * client must not delete it.
0314      *
0315      * @param zoneToAdopt  The given timezone to be adopted.
0316      * @param success      Indicates the success/failure of Calendar creation. Filled in
0317      *                     with U_ZERO_ERROR if created successfully, set to a failure result
0318      *                     otherwise.
0319      * @return             A Calendar if created successfully. nullptr otherwise.
0320      * @stable ICU 2.0
0321      */
0322     static Calendar* U_EXPORT2 createInstance(TimeZone* zoneToAdopt, UErrorCode& success);
0323 
0324     /**
0325      * Creates a Calendar using the given timezone and the default locale.  The TimeZone
0326      * is _not_ adopted; the client is still responsible for deleting it.
0327      *
0328      * @param zone  The timezone.
0329      * @param success      Indicates the success/failure of Calendar creation. Filled in
0330      *                     with U_ZERO_ERROR if created successfully, set to a failure result
0331      *                     otherwise.
0332      * @return             A Calendar if created successfully. nullptr otherwise.
0333      * @stable ICU 2.0
0334      */
0335     static Calendar* U_EXPORT2 createInstance(const TimeZone& zone, UErrorCode& success);
0336 
0337     /**
0338      * Creates a Calendar using the default timezone and the given locale.
0339      *
0340      * @param aLocale  The given locale.
0341      * @param success  Indicates the success/failure of Calendar creation. Filled in
0342      *                 with U_ZERO_ERROR if created successfully, set to a failure result
0343      *                 otherwise.
0344      * @return         A Calendar if created successfully. nullptr otherwise.
0345      * @stable ICU 2.0
0346      */
0347     static Calendar* U_EXPORT2 createInstance(const Locale& aLocale, UErrorCode& success);
0348 
0349     /**
0350      * Creates a Calendar using the given timezone and given locale.
0351      * The Calendar takes ownership of zoneToAdopt; the
0352      * client must not delete it.
0353      *
0354      * @param zoneToAdopt  The given timezone to be adopted.
0355      * @param aLocale      The given locale.
0356      * @param success      Indicates the success/failure of Calendar creation. Filled in
0357      *                     with U_ZERO_ERROR if created successfully, set to a failure result
0358      *                     otherwise.
0359      * @return             A Calendar if created successfully. nullptr otherwise.
0360      * @stable ICU 2.0
0361      */
0362     static Calendar* U_EXPORT2 createInstance(TimeZone* zoneToAdopt, const Locale& aLocale, UErrorCode& success);
0363 
0364     /**
0365      * Gets a Calendar using the given timezone and given locale.  The TimeZone
0366      * is _not_ adopted; the client is still responsible for deleting it.
0367      *
0368      * @param zone         The given timezone.
0369      * @param aLocale      The given locale.
0370      * @param success      Indicates the success/failure of Calendar creation. Filled in
0371      *                     with U_ZERO_ERROR if created successfully, set to a failure result
0372      *                     otherwise.
0373      * @return             A Calendar if created successfully. nullptr otherwise.
0374      * @stable ICU 2.0
0375      */
0376     static Calendar* U_EXPORT2 createInstance(const TimeZone& zone, const Locale& aLocale, UErrorCode& success);
0377 
0378     /**
0379      * Returns a list of the locales for which Calendars are installed.
0380      *
0381      * @param count  Number of locales returned.
0382      * @return       An array of Locale objects representing the set of locales for which
0383      *               Calendars are installed.  The system retains ownership of this list;
0384      *               the caller must NOT delete it. Does not include user-registered Calendars.
0385      * @stable ICU 2.0
0386      */
0387     static const Locale* U_EXPORT2 getAvailableLocales(int32_t& count);
0388 
0389 
0390     /**
0391      * Given a key and a locale, returns an array of string values in a preferred
0392      * order that would make a difference. These are all and only those values where
0393      * the open (creation) of the service with the locale formed from the input locale
0394      * plus input keyword and that value has different behavior than creation with the
0395      * input locale alone.
0396      * @param key           one of the keys supported by this service.  For now, only
0397      *                      "calendar" is supported.
0398      * @param locale        the locale
0399      * @param commonlyUsed  if set to true it will return only commonly used values
0400      *                      with the given locale in preferred order.  Otherwise,
0401      *                      it will return all the available values for the locale.
0402      * @param status        ICU Error Code
0403      * @return a string enumeration over keyword values for the given key and the locale.
0404      * @stable ICU 4.2
0405      */
0406     static StringEnumeration* U_EXPORT2 getKeywordValuesForLocale(const char* key,
0407                     const Locale& locale, UBool commonlyUsed, UErrorCode& status);
0408 
0409     /**
0410      * Returns the current UTC (GMT) time measured in milliseconds since 0:00:00 on 1/1/70
0411      * (derived from the system time).
0412      *
0413      * @return   The current UTC time in milliseconds.
0414      * @stable ICU 2.0
0415      */
0416     static UDate U_EXPORT2 getNow();
0417 
0418     /**
0419      * Gets this Calendar's time as milliseconds. May involve recalculation of time due
0420      * to previous calls to set time field values. The time specified is non-local UTC
0421      * (GMT) time. Although this method is const, this object may actually be changed
0422      * (semantically const).
0423      *
0424      * @param status  Output param set to success/failure code on exit. If any value
0425      *                previously set in the time field is invalid or restricted by
0426      *                leniency, this will be set to an error status.
0427      * @return        The current time in UTC (GMT) time, or zero if the operation
0428      *                failed.
0429      * @stable ICU 2.0
0430      */
0431     inline UDate getTime(UErrorCode& status) const { return getTimeInMillis(status); }
0432 
0433     /**
0434      * Sets this Calendar's current time with the given UDate. The time specified should
0435      * be in non-local UTC (GMT) time.
0436      *
0437      * @param date  The given UDate in UTC (GMT) time.
0438      * @param status  Output param set to success/failure code on exit. If any value
0439      *                set in the time field is invalid or restricted by
0440      *                leniency, this will be set to an error status.
0441      * @stable ICU 2.0
0442      */
0443     inline void setTime(UDate date, UErrorCode& status) { setTimeInMillis(date, status); }
0444 
0445     /**
0446      * Compares the equality of two Calendar objects. Objects of different subclasses
0447      * are considered unequal. This comparison is very exacting; two Calendar objects
0448      * must be in exactly the same state to be considered equal. To compare based on the
0449      * represented time, use equals() instead.
0450      *
0451      * @param that  The Calendar object to be compared with.
0452      * @return      true if the given Calendar is the same as this Calendar; false
0453      *              otherwise.
0454      * @stable ICU 2.0
0455      */
0456     virtual bool operator==(const Calendar& that) const;
0457 
0458     /**
0459      * Compares the inequality of two Calendar objects.
0460      *
0461      * @param that  The Calendar object to be compared with.
0462      * @return      true if the given Calendar is not the same as this Calendar; false
0463      *              otherwise.
0464      * @stable ICU 2.0
0465      */
0466     bool operator!=(const Calendar& that) const {return !operator==(that);}
0467 
0468     /**
0469      * Returns true if the given Calendar object is equivalent to this
0470      * one.  An equivalent Calendar will behave exactly as this one
0471      * does, but it may be set to a different time.  By contrast, for
0472      * the operator==() method to return true, the other Calendar must
0473      * be set to the same time.
0474      *
0475      * @param other the Calendar to be compared with this Calendar
0476      * @stable ICU 2.4
0477      */
0478     virtual UBool isEquivalentTo(const Calendar& other) const;
0479 
0480     /**
0481      * Compares the Calendar time, whereas Calendar::operator== compares the equality of
0482      * Calendar objects.
0483      *
0484      * @param when    The Calendar to be compared with this Calendar. Although this is a
0485      *                const parameter, the object may be modified physically
0486      *                (semantically const).
0487      * @param status  Output param set to success/failure code on exit. If any value
0488      *                previously set in the time field is invalid or restricted by
0489      *                leniency, this will be set to an error status.
0490      * @return        True if the current time of this Calendar is equal to the time of
0491      *                Calendar when; false otherwise.
0492      * @stable ICU 2.0
0493      */
0494     UBool equals(const Calendar& when, UErrorCode& status) const;
0495 
0496     /**
0497      * Returns true if this Calendar's current time is before "when"'s current time.
0498      *
0499      * @param when    The Calendar to be compared with this Calendar. Although this is a
0500      *                const parameter, the object may be modified physically
0501      *                (semantically const).
0502      * @param status  Output param set to success/failure code on exit. If any value
0503      *                previously set in the time field is invalid or restricted by
0504      *                leniency, this will be set to an error status.
0505      * @return        True if the current time of this Calendar is before the time of
0506      *                Calendar when; false otherwise.
0507      * @stable ICU 2.0
0508      */
0509     UBool before(const Calendar& when, UErrorCode& status) const;
0510 
0511     /**
0512      * Returns true if this Calendar's current time is after "when"'s current time.
0513      *
0514      * @param when    The Calendar to be compared with this Calendar. Although this is a
0515      *                const parameter, the object may be modified physically
0516      *                (semantically const).
0517      * @param status  Output param set to success/failure code on exit. If any value
0518      *                previously set in the time field is invalid or restricted by
0519      *                leniency, this will be set to an error status.
0520      * @return        True if the current time of this Calendar is after the time of
0521      *                Calendar when; false otherwise.
0522      * @stable ICU 2.0
0523      */
0524     UBool after(const Calendar& when, UErrorCode& status) const;
0525 
0526 #ifndef U_FORCE_HIDE_DEPRECATED_API
0527     /**
0528      * UDate Arithmetic function. Adds the specified (signed) amount of time to the given
0529      * time field, based on the calendar's rules. For example, to subtract 5 days from
0530      * the current time of the calendar, call add(Calendar::DATE, -5). When adding on
0531      * the month or Calendar::MONTH field, other fields like date might conflict and
0532      * need to be changed. For instance, adding 1 month on the date 01/31/96 will result
0533      * in 02/29/96.
0534      * Adding a positive value always means moving forward in time, so for the Gregorian calendar,
0535      * starting with 100 BC and adding +1 to year results in 99 BC (even though this actually reduces
0536      * the numeric value of the field itself).
0537      *
0538      * @param field   Specifies which date field to modify.
0539      * @param amount  The amount of time to be added to the field, in the natural unit
0540      *                for that field (e.g., days for the day fields, hours for the hour
0541      *                field.)
0542      * @param status  Output param set to success/failure code on exit. If any value
0543      *                previously set in the time field is invalid or restricted by
0544      *                leniency, this will be set to an error status.
0545      * @deprecated ICU 2.6. use add(UCalendarDateFields field, int32_t amount, UErrorCode& status) instead.
0546      */
0547     virtual void add(EDateFields field, int32_t amount, UErrorCode& status);
0548 #endif  // U_FORCE_HIDE_DEPRECATED_API
0549 
0550     /**
0551      * UDate Arithmetic function. Adds the specified (signed) amount of time to the given
0552      * time field, based on the calendar's rules. For example, to subtract 5 days from
0553      * the current time of the calendar, call add(Calendar::DATE, -5). When adding on
0554      * the month or Calendar::MONTH field, other fields like date might conflict and
0555      * need to be changed. For instance, adding 1 month on the date 01/31/96 will result
0556      * in 02/29/96.
0557      * Adding a positive value always means moving forward in time, so for the Gregorian calendar,
0558      * starting with 100 BC and adding +1 to year results in 99 BC (even though this actually reduces
0559      * the numeric value of the field itself).
0560      *
0561      * @param field   Specifies which date field to modify.
0562      * @param amount  The amount of time to be added to the field, in the natural unit
0563      *                for that field (e.g., days for the day fields, hours for the hour
0564      *                field.)
0565      * @param status  Output param set to success/failure code on exit. If any value
0566      *                previously set in the time field is invalid or restricted by
0567      *                leniency, this will be set to an error status.
0568      * @stable ICU 2.6.
0569      */
0570     virtual void add(UCalendarDateFields field, int32_t amount, UErrorCode& status);
0571 
0572 #ifndef U_HIDE_DEPRECATED_API
0573     /**
0574      * Time Field Rolling function. Rolls (up/down) a single unit of time on the given
0575      * time field. For example, to roll the current date up by one day, call
0576      * roll(Calendar::DATE, true). When rolling on the year or Calendar::YEAR field, it
0577      * will roll the year value in the range between getMinimum(Calendar::YEAR) and the
0578      * value returned by getMaximum(Calendar::YEAR). When rolling on the month or
0579      * Calendar::MONTH field, other fields like date might conflict and, need to be
0580      * changed. For instance, rolling the month up on the date 01/31/96 will result in
0581      * 02/29/96. Rolling up always means rolling forward in time (unless the limit of the
0582      * field is reached, in which case it may pin or wrap), so for Gregorian calendar,
0583      * starting with 100 BC and rolling the year up results in 99 BC.
0584      * When eras have a definite beginning and end (as in the Chinese calendar, or as in
0585      * most eras in the Japanese calendar) then rolling the year past either limit of the
0586      * era will cause the year to wrap around. When eras only have a limit at one end,
0587      * then attempting to roll the year past that limit will result in pinning the year
0588      * at that limit. Note that for most calendars in which era 0 years move forward in
0589      * time (such as Buddhist, Hebrew, or Islamic), it is possible for add or roll to
0590      * result in negative years for era 0 (that is the only way to represent years before
0591      * the calendar epoch).
0592      * When rolling on the hour-in-day or Calendar::HOUR_OF_DAY field, it will roll the
0593      * hour value in the range between 0 and 23, which is zero-based.
0594      * <P>
0595      * NOTE: Do not use this method -- use roll(EDateFields, int, UErrorCode&) instead.
0596      *
0597      * @param field   The time field.
0598      * @param up      Indicates if the value of the specified time field is to be rolled
0599      *                up or rolled down. Use true if rolling up, false otherwise.
0600      * @param status  Output param set to success/failure code on exit. If any value
0601      *                previously set in the time field is invalid or restricted by
0602      *                leniency, this will be set to an error status.
0603      * @deprecated ICU 2.6. Use roll(UCalendarDateFields field, UBool up, UErrorCode& status) instead.
0604      */
0605     inline void roll(EDateFields field, UBool up, UErrorCode& status);
0606 #endif  /* U_HIDE_DEPRECATED_API */
0607 
0608     /**
0609      * Time Field Rolling function. Rolls (up/down) a single unit of time on the given
0610      * time field. For example, to roll the current date up by one day, call
0611      * roll(Calendar::DATE, true). When rolling on the year or Calendar::YEAR field, it
0612      * will roll the year value in the range between getMinimum(Calendar::YEAR) and the
0613      * value returned by getMaximum(Calendar::YEAR). When rolling on the month or
0614      * Calendar::MONTH field, other fields like date might conflict and, need to be
0615      * changed. For instance, rolling the month up on the date 01/31/96 will result in
0616      * 02/29/96. Rolling up always means rolling forward in time (unless the limit of the
0617      * field is reached, in which case it may pin or wrap), so for Gregorian calendar,
0618      * starting with 100 BC and rolling the year up results in 99 BC.
0619      * When eras have a definite beginning and end (as in the Chinese calendar, or as in
0620      * most eras in the Japanese calendar) then rolling the year past either limit of the
0621      * era will cause the year to wrap around. When eras only have a limit at one end,
0622      * then attempting to roll the year past that limit will result in pinning the year
0623      * at that limit. Note that for most calendars in which era 0 years move forward in
0624      * time (such as Buddhist, Hebrew, or Islamic), it is possible for add or roll to
0625      * result in negative years for era 0 (that is the only way to represent years before
0626      * the calendar epoch).
0627      * When rolling on the hour-in-day or Calendar::HOUR_OF_DAY field, it will roll the
0628      * hour value in the range between 0 and 23, which is zero-based.
0629      * <P>
0630      * NOTE: Do not use this method -- use roll(UCalendarDateFields, int, UErrorCode&) instead.
0631      *
0632      * @param field   The time field.
0633      * @param up      Indicates if the value of the specified time field is to be rolled
0634      *                up or rolled down. Use true if rolling up, false otherwise.
0635      * @param status  Output param set to success/failure code on exit. If any value
0636      *                previously set in the time field is invalid or restricted by
0637      *                leniency, this will be set to an error status.
0638      * @stable ICU 2.6.
0639      */
0640     inline void roll(UCalendarDateFields field, UBool up, UErrorCode& status);
0641 
0642 #ifndef U_FORCE_HIDE_DEPRECATED_API
0643     /**
0644      * Time Field Rolling function. Rolls by the given amount on the given
0645      * time field. For example, to roll the current date up by one day, call
0646      * roll(Calendar::DATE, +1, status). When rolling on the month or
0647      * Calendar::MONTH field, other fields like date might conflict and, need to be
0648      * changed. For instance, rolling the month up on the date 01/31/96 will result in
0649      * 02/29/96. Rolling by a positive value always means rolling forward in time (unless
0650      * the limit of the field is reached, in which case it may pin or wrap), so for
0651      * Gregorian calendar, starting with 100 BC and rolling the year by + 1 results in 99 BC.
0652      * When eras have a definite beginning and end (as in the Chinese calendar, or as in
0653      * most eras in the Japanese calendar) then rolling the year past either limit of the
0654      * era will cause the year to wrap around. When eras only have a limit at one end,
0655      * then attempting to roll the year past that limit will result in pinning the year
0656      * at that limit. Note that for most calendars in which era 0 years move forward in
0657      * time (such as Buddhist, Hebrew, or Islamic), it is possible for add or roll to
0658      * result in negative years for era 0 (that is the only way to represent years before
0659      * the calendar epoch).
0660      * When rolling on the hour-in-day or Calendar::HOUR_OF_DAY field, it will roll the
0661      * hour value in the range between 0 and 23, which is zero-based.
0662      * <P>
0663      * The only difference between roll() and add() is that roll() does not change
0664      * the value of more significant fields when it reaches the minimum or maximum
0665      * of its range, whereas add() does.
0666      *
0667      * @param field   The time field.
0668      * @param amount  Indicates amount to roll.
0669      * @param status  Output param set to success/failure code on exit. If any value
0670      *                previously set in the time field is invalid, this will be set to
0671      *                an error status.
0672      * @deprecated ICU 2.6. Use roll(UCalendarDateFields field, int32_t amount, UErrorCode& status) instead.
0673      */
0674     virtual void roll(EDateFields field, int32_t amount, UErrorCode& status);
0675 #endif  // U_FORCE_HIDE_DEPRECATED_API
0676 
0677     /**
0678      * Time Field Rolling function. Rolls by the given amount on the given
0679      * time field. For example, to roll the current date up by one day, call
0680      * roll(Calendar::DATE, +1, status). When rolling on the month or
0681      * Calendar::MONTH field, other fields like date might conflict and, need to be
0682      * changed. For instance, rolling the month up on the date 01/31/96 will result in
0683      * 02/29/96. Rolling by a positive value always means rolling forward in time (unless
0684      * the limit of the field is reached, in which case it may pin or wrap), so for
0685      * Gregorian calendar, starting with 100 BC and rolling the year by + 1 results in 99 BC.
0686      * When eras have a definite beginning and end (as in the Chinese calendar, or as in
0687      * most eras in the Japanese calendar) then rolling the year past either limit of the
0688      * era will cause the year to wrap around. When eras only have a limit at one end,
0689      * then attempting to roll the year past that limit will result in pinning the year
0690      * at that limit. Note that for most calendars in which era 0 years move forward in
0691      * time (such as Buddhist, Hebrew, or Islamic), it is possible for add or roll to
0692      * result in negative years for era 0 (that is the only way to represent years before
0693      * the calendar epoch).
0694      * When rolling on the hour-in-day or Calendar::HOUR_OF_DAY field, it will roll the
0695      * hour value in the range between 0 and 23, which is zero-based.
0696      * <P>
0697      * The only difference between roll() and add() is that roll() does not change
0698      * the value of more significant fields when it reaches the minimum or maximum
0699      * of its range, whereas add() does.
0700      *
0701      * @param field   The time field.
0702      * @param amount  Indicates amount to roll.
0703      * @param status  Output param set to success/failure code on exit. If any value
0704      *                previously set in the time field is invalid, this will be set to
0705      *                an error status.
0706      * @stable ICU 2.6.
0707      */
0708     virtual void roll(UCalendarDateFields field, int32_t amount, UErrorCode& status);
0709 
0710 #ifndef U_FORCE_HIDE_DEPRECATED_API
0711     /**
0712      * Return the difference between the given time and the time this
0713      * calendar object is set to.  If this calendar is set
0714      * <em>before</em> the given time, the returned value will be
0715      * positive.  If this calendar is set <em>after</em> the given
0716      * time, the returned value will be negative.  The
0717      * <code>field</code> parameter specifies the units of the return
0718      * value.  For example, if <code>fieldDifference(when,
0719      * Calendar::MONTH)</code> returns 3, then this calendar is set to
0720      * 3 months before <code>when</code>, and possibly some addition
0721      * time less than one month.
0722      *
0723      * <p>As a side effect of this call, this calendar is advanced
0724      * toward <code>when</code> by the given amount.  That is, calling
0725      * this method has the side effect of calling <code>add(field,
0726      * n)</code>, where <code>n</code> is the return value.
0727      *
0728      * <p>Usage: To use this method, call it first with the largest
0729      * field of interest, then with progressively smaller fields.  For
0730      * example:
0731      *
0732      * <pre>
0733      * int y = cal->fieldDifference(when, Calendar::YEAR, err);
0734      * int m = cal->fieldDifference(when, Calendar::MONTH, err);
0735      * int d = cal->fieldDifference(when, Calendar::DATE, err);</pre>
0736      *
0737      * computes the difference between <code>cal</code> and
0738      * <code>when</code> in years, months, and days.
0739      *
0740      * <p>Note: <code>fieldDifference()</code> is
0741      * <em>asymmetrical</em>.  That is, in the following code:
0742      *
0743      * <pre>
0744      * cal->setTime(date1, err);
0745      * int m1 = cal->fieldDifference(date2, Calendar::MONTH, err);
0746      * int d1 = cal->fieldDifference(date2, Calendar::DATE, err);
0747      * cal->setTime(date2, err);
0748      * int m2 = cal->fieldDifference(date1, Calendar::MONTH, err);
0749      * int d2 = cal->fieldDifference(date1, Calendar::DATE, err);</pre>
0750      *
0751      * one might expect that <code>m1 == -m2 && d1 == -d2</code>.
0752      * However, this is not generally the case, because of
0753      * irregularities in the underlying calendar system (e.g., the
0754      * Gregorian calendar has a varying number of days per month).
0755      *
0756      * @param when the date to compare this calendar's time to
0757      * @param field the field in which to compute the result
0758      * @param status  Output param set to success/failure code on exit. If any value
0759      *                previously set in the time field is invalid, this will be set to
0760      *                an error status.
0761      * @return the difference, either positive or negative, between
0762      * this calendar's time and <code>when</code>, in terms of
0763      * <code>field</code>.
0764      * @deprecated ICU 2.6. Use fieldDifference(UDate when, UCalendarDateFields field, UErrorCode& status).
0765      */
0766     virtual int32_t fieldDifference(UDate when, EDateFields field, UErrorCode& status);
0767 #endif  // U_FORCE_HIDE_DEPRECATED_API
0768 
0769     /**
0770      * Return the difference between the given time and the time this
0771      * calendar object is set to.  If this calendar is set
0772      * <em>before</em> the given time, the returned value will be
0773      * positive.  If this calendar is set <em>after</em> the given
0774      * time, the returned value will be negative.  The
0775      * <code>field</code> parameter specifies the units of the return
0776      * value.  For example, if <code>fieldDifference(when,
0777      * Calendar::MONTH)</code> returns 3, then this calendar is set to
0778      * 3 months before <code>when</code>, and possibly some addition
0779      * time less than one month.
0780      *
0781      * <p>As a side effect of this call, this calendar is advanced
0782      * toward <code>when</code> by the given amount.  That is, calling
0783      * this method has the side effect of calling <code>add(field,
0784      * n)</code>, where <code>n</code> is the return value.
0785      *
0786      * <p>Usage: To use this method, call it first with the largest
0787      * field of interest, then with progressively smaller fields.  For
0788      * example:
0789      *
0790      * <pre>
0791      * int y = cal->fieldDifference(when, Calendar::YEAR, err);
0792      * int m = cal->fieldDifference(when, Calendar::MONTH, err);
0793      * int d = cal->fieldDifference(when, Calendar::DATE, err);</pre>
0794      *
0795      * computes the difference between <code>cal</code> and
0796      * <code>when</code> in years, months, and days.
0797      *
0798      * <p>Note: <code>fieldDifference()</code> is
0799      * <em>asymmetrical</em>.  That is, in the following code:
0800      *
0801      * <pre>
0802      * cal->setTime(date1, err);
0803      * int m1 = cal->fieldDifference(date2, Calendar::MONTH, err);
0804      * int d1 = cal->fieldDifference(date2, Calendar::DATE, err);
0805      * cal->setTime(date2, err);
0806      * int m2 = cal->fieldDifference(date1, Calendar::MONTH, err);
0807      * int d2 = cal->fieldDifference(date1, Calendar::DATE, err);</pre>
0808      *
0809      * one might expect that <code>m1 == -m2 && d1 == -d2</code>.
0810      * However, this is not generally the case, because of
0811      * irregularities in the underlying calendar system (e.g., the
0812      * Gregorian calendar has a varying number of days per month).
0813      *
0814      * @param when the date to compare this calendar's time to
0815      * @param field the field in which to compute the result
0816      * @param status  Output param set to success/failure code on exit. If any value
0817      *                previously set in the time field is invalid, this will be set to
0818      *                an error status.
0819      * @return the difference, either positive or negative, between
0820      * this calendar's time and <code>when</code>, in terms of
0821      * <code>field</code>.
0822      * @stable ICU 2.6.
0823      */
0824     virtual int32_t fieldDifference(UDate when, UCalendarDateFields field, UErrorCode& status);
0825 
0826     /**
0827      * Sets the calendar's time zone to be the one passed in. The Calendar takes ownership
0828      * of the TimeZone; the caller is no longer responsible for deleting it.  If the
0829      * given time zone is nullptr, this function has no effect.
0830      *
0831      * @param value  The given time zone.
0832      * @stable ICU 2.0
0833      */
0834     void adoptTimeZone(TimeZone* value);
0835 
0836     /**
0837      * Sets the calendar's time zone to be the same as the one passed in. The TimeZone
0838      * passed in is _not_ adopted; the client is still responsible for deleting it.
0839      *
0840      * @param zone  The given time zone.
0841      * @stable ICU 2.0
0842      */
0843     void setTimeZone(const TimeZone& zone);
0844 
0845     /**
0846      * Returns a reference to the time zone owned by this calendar. The returned reference
0847      * is only valid until clients make another call to adoptTimeZone or setTimeZone,
0848      * or this Calendar is destroyed.
0849      *
0850      * @return   The time zone object associated with this calendar.
0851      * @stable ICU 2.0
0852      */
0853     const TimeZone& getTimeZone() const;
0854 
0855     /**
0856      * Returns the time zone owned by this calendar. The caller owns the returned object
0857      * and must delete it when done.  After this call, the new time zone associated
0858      * with this Calendar is the default TimeZone as returned by TimeZone::createDefault().
0859      *
0860      * @return   The time zone object which was associated with this calendar.
0861      * @stable ICU 2.0
0862      */
0863     TimeZone* orphanTimeZone();
0864 
0865     /**
0866      * Queries if the current date for this Calendar is in Daylight Savings Time.
0867      *
0868      * @param status Fill-in parameter which receives the status of this operation.
0869      * @return   True if the current date for this Calendar is in Daylight Savings Time,
0870      *           false, otherwise.
0871      * @stable ICU 2.0
0872      */
0873     virtual UBool inDaylightTime(UErrorCode& status) const;
0874 
0875     /**
0876      * Specifies whether or not date/time interpretation is to be lenient. With lenient
0877      * interpretation, a date such as "February 942, 1996" will be treated as being
0878      * equivalent to the 941st day after February 1, 1996. With strict interpretation,
0879      * such dates will cause an error when computing time from the time field values
0880      * representing the dates.
0881      *
0882      * @param lenient  True specifies date/time interpretation to be lenient.
0883      *
0884      * @see            DateFormat#setLenient
0885      * @stable ICU 2.0
0886      */
0887     void setLenient(UBool lenient);
0888 
0889     /**
0890      * Tells whether date/time interpretation is to be lenient.
0891      *
0892      * @return   True tells that date/time interpretation is to be lenient.
0893      * @stable ICU 2.0
0894      */
0895     UBool isLenient() const;
0896 
0897     /**
0898      * Sets the behavior for handling wall time repeating multiple times
0899      * at negative time zone offset transitions. For example, 1:30 AM on
0900      * November 6, 2011 in US Eastern time (America/New_York) occurs twice;
0901      * 1:30 AM EDT, then 1:30 AM EST one hour later. When <code>UCAL_WALLTIME_FIRST</code>
0902      * is used, the wall time 1:30AM in this example will be interpreted as 1:30 AM EDT
0903      * (first occurrence). When <code>UCAL_WALLTIME_LAST</code> is used, it will be
0904      * interpreted as 1:30 AM EST (last occurrence). The default value is
0905      * <code>UCAL_WALLTIME_LAST</code>.
0906      * <p>
0907      * <b>Note:</b>When <code>UCAL_WALLTIME_NEXT_VALID</code> is not a valid
0908      * option for this. When the argument is neither <code>UCAL_WALLTIME_FIRST</code>
0909      * nor <code>UCAL_WALLTIME_LAST</code>, this method has no effect and will keep
0910      * the current setting.
0911      *
0912      * @param option the behavior for handling repeating wall time, either
0913      * <code>UCAL_WALLTIME_FIRST</code> or <code>UCAL_WALLTIME_LAST</code>.
0914      * @see #getRepeatedWallTimeOption
0915      * @stable ICU 49
0916      */
0917     void setRepeatedWallTimeOption(UCalendarWallTimeOption option);
0918 
0919     /**
0920      * Gets the behavior for handling wall time repeating multiple times
0921      * at negative time zone offset transitions.
0922      *
0923      * @return the behavior for handling repeating wall time, either
0924      * <code>UCAL_WALLTIME_FIRST</code> or <code>UCAL_WALLTIME_LAST</code>.
0925      * @see #setRepeatedWallTimeOption
0926      * @stable ICU 49
0927      */
0928     UCalendarWallTimeOption getRepeatedWallTimeOption() const;
0929 
0930     /**
0931      * Sets the behavior for handling skipped wall time at positive time zone offset
0932      * transitions. For example, 2:30 AM on March 13, 2011 in US Eastern time (America/New_York)
0933      * does not exist because the wall time jump from 1:59 AM EST to 3:00 AM EDT. When
0934      * <code>UCAL_WALLTIME_FIRST</code> is used, 2:30 AM is interpreted as 30 minutes before 3:00 AM
0935      * EDT, therefore, it will be resolved as 1:30 AM EST. When <code>UCAL_WALLTIME_LAST</code>
0936      * is used, 2:30 AM is interpreted as 31 minutes after 1:59 AM EST, therefore, it will be
0937      * resolved as 3:30 AM EDT. When <code>UCAL_WALLTIME_NEXT_VALID</code> is used, 2:30 AM will
0938      * be resolved as next valid wall time, that is 3:00 AM EDT. The default value is
0939      * <code>UCAL_WALLTIME_LAST</code>.
0940      * <p>
0941      * <b>Note:</b>This option is effective only when this calendar is lenient.
0942      * When the calendar is strict, such non-existing wall time will cause an error.
0943      *
0944      * @param option the behavior for handling skipped wall time at positive time zone
0945      * offset transitions, one of <code>UCAL_WALLTIME_FIRST</code>, <code>UCAL_WALLTIME_LAST</code> and
0946      * <code>UCAL_WALLTIME_NEXT_VALID</code>.
0947      * @see #getSkippedWallTimeOption
0948      *
0949      * @stable ICU 49
0950      */
0951     void setSkippedWallTimeOption(UCalendarWallTimeOption option);
0952 
0953     /**
0954      * Gets the behavior for handling skipped wall time at positive time zone offset
0955      * transitions.
0956      *
0957      * @return the behavior for handling skipped wall time, one of
0958      * <code>UCAL_WALLTIME_FIRST</code>, <code>UCAL_WALLTIME_LAST</code>
0959      * and <code>UCAL_WALLTIME_NEXT_VALID</code>.
0960      * @see #setSkippedWallTimeOption
0961      * @stable ICU 49
0962      */
0963     UCalendarWallTimeOption getSkippedWallTimeOption() const;
0964 
0965     /**
0966      * Sets what the first day of the week is; e.g., Sunday in US, Monday in France.
0967      *
0968      * @param value  The given first day of the week.
0969      * @stable ICU 2.6.
0970      */
0971     void setFirstDayOfWeek(UCalendarDaysOfWeek value);
0972 
0973 #ifndef U_HIDE_DEPRECATED_API
0974     /**
0975      * Gets what the first day of the week is; e.g., Sunday in US, Monday in France.
0976      *
0977      * @return   The first day of the week.
0978      * @deprecated ICU 2.6 use the overload with error code
0979      */
0980     EDaysOfWeek getFirstDayOfWeek() const;
0981 #endif  /* U_HIDE_DEPRECATED_API */
0982 
0983     /**
0984      * Gets what the first day of the week is; e.g., Sunday in US, Monday in France.
0985      *
0986      * @param status error code
0987      * @return   The first day of the week.
0988      * @stable ICU 2.6
0989      */
0990     UCalendarDaysOfWeek getFirstDayOfWeek(UErrorCode &status) const;
0991 
0992     /**
0993      * Sets what the minimal days required in the first week of the year are; For
0994      * example, if the first week is defined as one that contains the first day of the
0995      * first month of a year, call the method with value 1. If it must be a full week,
0996      * use value 7.
0997      *
0998      * @param value  The given minimal days required in the first week of the year.
0999      * @stable ICU 2.0
1000      */
1001     void setMinimalDaysInFirstWeek(uint8_t value);
1002 
1003     /**
1004      * Gets what the minimal days required in the first week of the year are; e.g., if
1005      * the first week is defined as one that contains the first day of the first month
1006      * of a year, getMinimalDaysInFirstWeek returns 1. If the minimal days required must
1007      * be a full week, getMinimalDaysInFirstWeek returns 7.
1008      *
1009      * @return   The minimal days required in the first week of the year.
1010      * @stable ICU 2.0
1011      */
1012     uint8_t getMinimalDaysInFirstWeek() const;
1013 
1014 #ifndef U_FORCE_HIDE_DEPRECATED_API
1015     /**
1016      * Gets the minimum value for the given time field. e.g., for Gregorian
1017      * DAY_OF_MONTH, 1.
1018      *
1019      * @param field  The given time field.
1020      * @return       The minimum value for the given time field.
1021      * @deprecated ICU 2.6. Use getMinimum(UCalendarDateFields field) instead.
1022      */
1023     virtual int32_t getMinimum(EDateFields field) const;
1024 #endif  // U_FORCE_HIDE_DEPRECATED_API
1025 
1026     /**
1027      * Gets the minimum value for the given time field. e.g., for Gregorian
1028      * DAY_OF_MONTH, 1.
1029      *
1030      * @param field  The given time field.
1031      * @return       The minimum value for the given time field.
1032      * @stable ICU 2.6.
1033      */
1034     virtual int32_t getMinimum(UCalendarDateFields field) const;
1035 
1036 #ifndef U_FORCE_HIDE_DEPRECATED_API
1037     /**
1038      * Gets the maximum value for the given time field. e.g. for Gregorian DAY_OF_MONTH,
1039      * 31.
1040      *
1041      * @param field  The given time field.
1042      * @return       The maximum value for the given time field.
1043      * @deprecated ICU 2.6. Use getMaximum(UCalendarDateFields field) instead.
1044      */
1045     virtual int32_t getMaximum(EDateFields field) const;
1046 #endif  // U_FORCE_HIDE_DEPRECATED_API
1047 
1048     /**
1049      * Gets the maximum value for the given time field. e.g. for Gregorian DAY_OF_MONTH,
1050      * 31.
1051      *
1052      * @param field  The given time field.
1053      * @return       The maximum value for the given time field.
1054      * @stable ICU 2.6.
1055      */
1056     virtual int32_t getMaximum(UCalendarDateFields field) const;
1057 
1058 #ifndef U_FORCE_HIDE_DEPRECATED_API
1059     /**
1060      * Gets the highest minimum value for the given field if varies. Otherwise same as
1061      * getMinimum(). For Gregorian, no difference.
1062      *
1063      * @param field  The given time field.
1064      * @return       The highest minimum value for the given time field.
1065      * @deprecated ICU 2.6. Use getGreatestMinimum(UCalendarDateFields field) instead.
1066      */
1067     virtual int32_t getGreatestMinimum(EDateFields field) const;
1068 #endif  // U_FORCE_HIDE_DEPRECATED_API
1069 
1070     /**
1071      * Gets the highest minimum value for the given field if varies. Otherwise same as
1072      * getMinimum(). For Gregorian, no difference.
1073      *
1074      * @param field  The given time field.
1075      * @return       The highest minimum value for the given time field.
1076      * @stable ICU 2.6.
1077      */
1078     virtual int32_t getGreatestMinimum(UCalendarDateFields field) const;
1079 
1080 #ifndef U_FORCE_HIDE_DEPRECATED_API
1081     /**
1082      * Gets the lowest maximum value for the given field if varies. Otherwise same as
1083      * getMaximum(). e.g., for Gregorian DAY_OF_MONTH, 28.
1084      *
1085      * @param field  The given time field.
1086      * @return       The lowest maximum value for the given time field.
1087      * @deprecated ICU 2.6. Use getLeastMaximum(UCalendarDateFields field) instead.
1088      */
1089     virtual int32_t getLeastMaximum(EDateFields field) const;
1090 #endif  // U_FORCE_HIDE_DEPRECATED_API
1091 
1092     /**
1093      * Gets the lowest maximum value for the given field if varies. Otherwise same as
1094      * getMaximum(). e.g., for Gregorian DAY_OF_MONTH, 28.
1095      *
1096      * @param field  The given time field.
1097      * @return       The lowest maximum value for the given time field.
1098      * @stable ICU 2.6.
1099      */
1100     virtual int32_t getLeastMaximum(UCalendarDateFields field) const;
1101 
1102 #ifndef U_HIDE_DEPRECATED_API
1103     /**
1104      * Return the minimum value that this field could have, given the current date.
1105      * For the Gregorian calendar, this is the same as getMinimum() and getGreatestMinimum().
1106      *
1107      * The version of this function on Calendar uses an iterative algorithm to determine the
1108      * actual minimum value for the field.  There is almost always a more efficient way to
1109      * accomplish this (in most cases, you can simply return getMinimum()).  GregorianCalendar
1110      * overrides this function with a more efficient implementation.
1111      *
1112      * @param field    the field to determine the minimum of
1113      * @param status   Fill-in parameter which receives the status of this operation.
1114      * @return         the minimum of the given field for the current date of this Calendar
1115      * @deprecated ICU 2.6. Use getActualMinimum(UCalendarDateFields field, UErrorCode& status) instead.
1116      */
1117     int32_t getActualMinimum(EDateFields field, UErrorCode& status) const;
1118 #endif  /* U_HIDE_DEPRECATED_API */
1119 
1120     /**
1121      * Return the minimum value that this field could have, given the current date.
1122      * For the Gregorian calendar, this is the same as getMinimum() and getGreatestMinimum().
1123      *
1124      * The version of this function on Calendar uses an iterative algorithm to determine the
1125      * actual minimum value for the field.  There is almost always a more efficient way to
1126      * accomplish this (in most cases, you can simply return getMinimum()).  GregorianCalendar
1127      * overrides this function with a more efficient implementation.
1128      *
1129      * @param field    the field to determine the minimum of
1130      * @param status   Fill-in parameter which receives the status of this operation.
1131      * @return         the minimum of the given field for the current date of this Calendar
1132      * @stable ICU 2.6.
1133      */
1134     virtual int32_t getActualMinimum(UCalendarDateFields field, UErrorCode& status) const;
1135 
1136     /**
1137      * Return the maximum value that this field could have, given the current date.
1138      * For example, with the date "Feb 3, 1997" and the DAY_OF_MONTH field, the actual
1139      * maximum would be 28; for "Feb 3, 1996" it s 29.  Similarly for a Hebrew calendar,
1140      * for some years the actual maximum for MONTH is 12, and for others 13.
1141      *
1142      * The version of this function on Calendar uses an iterative algorithm to determine the
1143      * actual maximum value for the field.  There is almost always a more efficient way to
1144      * accomplish this (in most cases, you can simply return getMaximum()).  GregorianCalendar
1145      * overrides this function with a more efficient implementation.
1146      *
1147      * @param field    the field to determine the maximum of
1148      * @param status   Fill-in parameter which receives the status of this operation.
1149      * @return         the maximum of the given field for the current date of this Calendar
1150      * @stable ICU 2.6.
1151      */
1152     virtual int32_t getActualMaximum(UCalendarDateFields field, UErrorCode& status) const;
1153 
1154     /**
1155      * Gets the value for a given time field. Recalculate the current time field values
1156      * if the time value has been changed by a call to setTime(). Return zero for unset
1157      * fields if any fields have been explicitly set by a call to set(). To force a
1158      * recomputation of all fields regardless of the previous state, call complete().
1159      * This method is semantically const, but may alter the object in memory.
1160      *
1161      * @param field  The given time field.
1162      * @param status Fill-in parameter which receives the status of the operation.
1163      * @return       The value for the given time field, or zero if the field is unset,
1164      *               and set() has been called for any other field.
1165      * @stable ICU 2.6.
1166      */
1167     int32_t get(UCalendarDateFields field, UErrorCode& status) const;
1168 
1169     /**
1170      * Determines if the given time field has a value set. This can affect in the
1171      * resolving of time in Calendar. Unset fields have a value of zero, by definition.
1172      *
1173      * @param field  The given time field.
1174      * @return   True if the given time field has a value set; false otherwise.
1175      * @stable ICU 2.6.
1176      */
1177     UBool isSet(UCalendarDateFields field) const;
1178 
1179     /**
1180      * Sets the given time field with the given value.
1181      *
1182      * @param field  The given time field.
1183      * @param value  The value to be set for the given time field.
1184      * @stable ICU 2.6.
1185      */
1186     void set(UCalendarDateFields field, int32_t value);
1187 
1188     /**
1189      * Sets the values for the fields YEAR, MONTH, and DATE. Other field values are
1190      * retained; call clear() first if this is not desired.
1191      *
1192      * @param year   The value used to set the YEAR time field.
1193      * @param month  The value used to set the MONTH time field. Month value is 0-based.
1194      *               e.g., 0 for January.
1195      * @param date   The value used to set the DATE time field.
1196      * @stable ICU 2.0
1197      */
1198     void set(int32_t year, int32_t month, int32_t date);
1199 
1200     /**
1201      * Sets the values for the fields YEAR, MONTH, DATE, HOUR_OF_DAY, and MINUTE. Other
1202      * field values are retained; call clear() first if this is not desired.
1203      *
1204      * @param year    The value used to set the YEAR time field.
1205      * @param month   The value used to set the MONTH time field. Month value is
1206      *                0-based. E.g., 0 for January.
1207      * @param date    The value used to set the DATE time field.
1208      * @param hour    The value used to set the HOUR_OF_DAY time field.
1209      * @param minute  The value used to set the MINUTE time field.
1210      * @stable ICU 2.0
1211      */
1212     void set(int32_t year, int32_t month, int32_t date, int32_t hour, int32_t minute);
1213 
1214     /**
1215      * Sets the values for the fields YEAR, MONTH, DATE, HOUR_OF_DAY, MINUTE, and SECOND.
1216      * Other field values are retained; call clear() first if this is not desired.
1217      *
1218      * @param year    The value used to set the YEAR time field.
1219      * @param month   The value used to set the MONTH time field. Month value is
1220      *                0-based. E.g., 0 for January.
1221      * @param date    The value used to set the DATE time field.
1222      * @param hour    The value used to set the HOUR_OF_DAY time field.
1223      * @param minute  The value used to set the MINUTE time field.
1224      * @param second  The value used to set the SECOND time field.
1225      * @stable ICU 2.0
1226      */
1227     void set(int32_t year, int32_t month, int32_t date, int32_t hour, int32_t minute, int32_t second);
1228 
1229     /**
1230      * Clears the values of all the time fields, making them both unset and assigning
1231      * them a value of zero. The field values will be determined during the next
1232      * resolving of time into time fields.
1233      * @stable ICU 2.0
1234      */
1235     void clear();
1236 
1237     /**
1238      * Clears the value in the given time field, both making it unset and assigning it a
1239      * value of zero. This field value will be determined during the next resolving of
1240      * time into time fields. Clearing UCAL_ORDINAL_MONTH or UCAL_MONTH will
1241      * clear both fields.
1242      *
1243      * @param field  The time field to be cleared.
1244      * @stable ICU 2.6.
1245      */
1246     void clear(UCalendarDateFields field);
1247 
1248     /**
1249      * Returns a unique class ID POLYMORPHICALLY. Pure virtual method. This method is to
1250      * implement a simple version of RTTI, since not all C++ compilers support genuine
1251      * RTTI. Polymorphic operator==() and clone() methods call this method.
1252      * <P>
1253      * Concrete subclasses of Calendar must implement getDynamicClassID() and also a
1254      * static method and data member:
1255      *
1256      *      static UClassID getStaticClassID() { return (UClassID)&amp;fgClassID; }
1257      *      static char fgClassID;
1258      *
1259      * @return   The class ID for this object. All objects of a given class have the
1260      *           same class ID. Objects of other classes have different class IDs.
1261      * @stable ICU 2.0
1262      */
1263     virtual UClassID getDynamicClassID() const override = 0;
1264 
1265     /**
1266      * Returns the calendar type name string for this Calendar object.
1267      * The returned string is the legacy ICU calendar attribute value,
1268      * for example, "gregorian" or "japanese".
1269      *
1270      * See type="old type name" for the calendar attribute of locale IDs
1271      * at http://www.unicode.org/reports/tr35/#Key_Type_Definitions
1272      *
1273      * Sample code for getting the LDML/BCP 47 calendar key value:
1274      * \code
1275      * const char *calType = cal->getType();
1276      * if (0 == strcmp(calType, "unknown")) {
1277      *     // deal with unknown calendar type
1278      * } else {
1279      *     string localeID("root@calendar=");
1280      *     localeID.append(calType);
1281      *     char langTag[100];
1282      *     UErrorCode errorCode = U_ZERO_ERROR;
1283      *     int32_t length = uloc_toLanguageTag(localeID.c_str(), langTag, (int32_t)sizeof(langTag), true, &errorCode);
1284      *     if (U_FAILURE(errorCode)) {
1285      *         // deal with errors & overflow
1286      *     }
1287      *     string lang(langTag, length);
1288      *     size_t caPos = lang.find("-ca-");
1289      *     lang.erase(0, caPos + 4);
1290      *     // lang now contains the LDML calendar type
1291      * }
1292      * \endcode
1293      *
1294      * @return legacy calendar type name string
1295      * @stable ICU 49
1296      */
1297     virtual const char * getType() const = 0;
1298 
1299     /**
1300      * Returns whether the given day of the week is a weekday, a weekend day,
1301      * or a day that transitions from one to the other, for the locale and
1302      * calendar system associated with this Calendar (the locale's region is
1303      * often the most determinant factor). If a transition occurs at midnight,
1304      * then the days before and after the transition will have the
1305      * type UCAL_WEEKDAY or UCAL_WEEKEND. If a transition occurs at a time
1306      * other than midnight, then the day of the transition will have
1307      * the type UCAL_WEEKEND_ONSET or UCAL_WEEKEND_CEASE. In this case, the
1308      * method getWeekendTransition() will return the point of
1309      * transition.
1310      * @param dayOfWeek The day of the week whose type is desired (UCAL_SUNDAY..UCAL_SATURDAY).
1311      * @param status The error code for the operation.
1312      * @return The UCalendarWeekdayType for the day of the week.
1313      * @stable ICU 4.4
1314      */
1315     virtual UCalendarWeekdayType getDayOfWeekType(UCalendarDaysOfWeek dayOfWeek, UErrorCode &status) const;
1316 
1317     /**
1318      * Returns the time during the day at which the weekend begins or ends in
1319      * this calendar system.  If getDayOfWeekType() returns UCAL_WEEKEND_ONSET
1320      * for the specified dayOfWeek, return the time at which the weekend begins.
1321      * If getDayOfWeekType() returns UCAL_WEEKEND_CEASE for the specified dayOfWeek,
1322      * return the time at which the weekend ends. If getDayOfWeekType() returns
1323      * some other UCalendarWeekdayType for the specified dayOfWeek, is it an error condition
1324      * (U_ILLEGAL_ARGUMENT_ERROR).
1325      * @param dayOfWeek The day of the week for which the weekend transition time is
1326      * desired (UCAL_SUNDAY..UCAL_SATURDAY).
1327      * @param status The error code for the operation.
1328      * @return The milliseconds after midnight at which the weekend begins or ends.
1329      * @stable ICU 4.4
1330      */
1331     virtual int32_t getWeekendTransition(UCalendarDaysOfWeek dayOfWeek, UErrorCode &status) const;
1332 
1333     /**
1334      * Returns true if the given UDate is in the weekend in
1335      * this calendar system.
1336      * @param date The UDate in question.
1337      * @param status The error code for the operation.
1338      * @return true if the given UDate is in the weekend in
1339      * this calendar system, false otherwise.
1340      * @stable ICU 4.4
1341      */
1342     virtual UBool isWeekend(UDate date, UErrorCode &status) const;
1343 
1344     /**
1345      * Returns true if this Calendar's current date-time is in the weekend in
1346      * this calendar system.
1347      * @return true if this Calendar's current date-time is in the weekend in
1348      * this calendar system, false otherwise.
1349      * @stable ICU 4.4
1350      */
1351     virtual UBool isWeekend() const;
1352 
1353     /**
1354      * Returns true if the date is in a leap year. Recalculate the current time
1355      * field values if the time value has been changed by a call to * setTime().
1356      * This method is semantically const, but may alter the object in memory.
1357      * A "leap year" is a year that contains more days than other years (for
1358      * solar or lunar calendars) or more months than other years (for lunisolar
1359      * calendars like Hebrew or Chinese), as defined in the ECMAScript Temporal
1360      * proposal.
1361      *
1362      * @param status        ICU Error Code
1363      * @return       True if the date in the fields is in a Temporal proposal
1364      *               defined leap year. False otherwise.
1365      * @stable ICU 73
1366      */
1367     virtual bool inTemporalLeapYear(UErrorCode& status) const;
1368 
1369     /**
1370      * Gets The Temporal monthCode value corresponding to the month for the date.
1371      * The value is a string identifier that starts with the literal grapheme
1372      * "M" followed by two graphemes representing the zero-padded month number
1373      * of the current month in a normal (non-leap) year and suffixed by an
1374      * optional literal grapheme "L" if this is a leap month in a lunisolar
1375      * calendar. The 25 possible values are "M01" .. "M13" and "M01L" .. "M12L".
1376      * For the Hebrew calendar, the values are "M01" .. "M12" for non-leap year, and
1377      * "M01" .. "M05", "M05L", "M06" .. "M12" for leap year.
1378      * For the Chinese calendar, the values are "M01" .. "M12" for non-leap year and
1379      * in leap year with another monthCode in "M01L" .. "M12L".
1380      * For Coptic and Ethiopian calendar, the Temporal monthCode values for any
1381      * years are "M01" to "M13".
1382      *
1383      * @param status        ICU Error Code
1384      * @return       One of 25 possible strings in {"M01".."M13", "M01L".."M12L"}.
1385      * @stable ICU 73
1386      */
1387     virtual const char* getTemporalMonthCode(UErrorCode& status) const;
1388 
1389     /**
1390      * Sets The Temporal monthCode which is a string identifier that starts
1391      * with the literal grapheme "M" followed by two graphemes representing
1392      * the zero-padded month number of the current month in a normal
1393      * (non-leap) year and suffixed by an optional literal grapheme "L" if this
1394      * is a leap month in a lunisolar calendar. The 25 possible values are
1395      * "M01" .. "M13" and "M01L" .. "M12L". For Hebrew calendar, the values are
1396      * "M01" .. "M12" for non-leap years, and "M01" .. "M05", "M05L", "M06"
1397      * .. "M12" for leap year.
1398      * For the Chinese calendar, the values are "M01" .. "M12" for non-leap year and
1399      * in leap year with another monthCode in "M01L" .. "M12L".
1400      * For Coptic and Ethiopian calendar, the Temporal monthCode values for any
1401      * years are "M01" to "M13".
1402      *
1403      * @param temporalMonth  The value to be set for temporal monthCode.
1404      * @param status        ICU Error Code
1405      *
1406      * @stable ICU 73
1407      */
1408     virtual void setTemporalMonthCode(const char* temporalMonth, UErrorCode& status);
1409 
1410 protected:
1411 
1412      /**
1413       * Constructs a Calendar with the default time zone as returned by
1414       * TimeZone::createInstance(), and the default locale.
1415       *
1416       * @param success  Indicates the status of Calendar object construction. Returns
1417       *                 U_ZERO_ERROR if constructed successfully.
1418      * @stable ICU 2.0
1419       */
1420     Calendar(UErrorCode& success);
1421 
1422     /**
1423      * Copy constructor
1424      *
1425      * @param source    Calendar object to be copied from
1426      * @stable ICU 2.0
1427      */
1428     Calendar(const Calendar& source);
1429 
1430     /**
1431      * Default assignment operator
1432      *
1433      * @param right    Calendar object to be copied
1434      * @stable ICU 2.0
1435      */
1436     Calendar& operator=(const Calendar& right);
1437 
1438     /**
1439      * Constructs a Calendar with the given time zone and locale. Clients are no longer
1440      * responsible for deleting the given time zone object after it's adopted.
1441      *
1442      * @param zone     The given time zone.
1443      * @param aLocale  The given locale.
1444      * @param success  Indicates the status of Calendar object construction. Returns
1445      *                 U_ZERO_ERROR if constructed successfully.
1446      * @stable ICU 2.0
1447      */
1448     Calendar(TimeZone* zone, const Locale& aLocale, UErrorCode& success);
1449 
1450     /**
1451      * Constructs a Calendar with the given time zone and locale.
1452      *
1453      * @param zone     The given time zone.
1454      * @param aLocale  The given locale.
1455      * @param success  Indicates the status of Calendar object construction. Returns
1456      *                 U_ZERO_ERROR if constructed successfully.
1457      * @stable ICU 2.0
1458      */
1459     Calendar(const TimeZone& zone, const Locale& aLocale, UErrorCode& success);
1460 
1461     /**
1462      * Converts Calendar's time field values to GMT as milliseconds.
1463      *
1464      * @param status  Output param set to success/failure code on exit. If any value
1465      *                previously set in the time field is invalid or restricted by
1466      *                leniency, this will be set to an error status.
1467      * @stable ICU 2.0
1468      */
1469     virtual void computeTime(UErrorCode& status);
1470 
1471     /**
1472      * Converts GMT as milliseconds to time field values. This allows you to sync up the
1473      * time field values with a new time that is set for the calendar.  This method
1474      * does NOT recompute the time first; to recompute the time, then the fields, use
1475      * the method complete().
1476      *
1477      * @param status  Output param set to success/failure code on exit. If any value
1478      *                previously set in the time field is invalid or restricted by
1479      *                leniency, this will be set to an error status.
1480      * @stable ICU 2.0
1481      */
1482     virtual void computeFields(UErrorCode& status);
1483 
1484     /**
1485      * Gets this Calendar's current time as a long.
1486      *
1487      * @param status  Output param set to success/failure code on exit. If any value
1488      *                previously set in the time field is invalid or restricted by
1489      *                leniency, this will be set to an error status.
1490      * @return the current time as UTC milliseconds from the epoch.
1491      * @stable ICU 2.0
1492      */
1493     double getTimeInMillis(UErrorCode& status) const;
1494 
1495     /**
1496      * Sets this Calendar's current time from the given long value.
1497      * @param millis  the new time in UTC milliseconds from the epoch.
1498      * @param status  Output param set to success/failure code on exit. If any value
1499      *                previously set in the time field is invalid or restricted by
1500      *                leniency, this will be set to an error status.
1501      * @stable ICU 2.0
1502      */
1503     void setTimeInMillis( double millis, UErrorCode& status );
1504 
1505     /**
1506      * Recomputes the current time from currently set fields, and then fills in any
1507      * unset fields in the time field list.
1508      *
1509      * @param status  Output param set to success/failure code on exit. If any value
1510      *                previously set in the time field is invalid or restricted by
1511      *                leniency, this will be set to an error status.
1512      * @stable ICU 2.0
1513      */
1514     void complete(UErrorCode& status);
1515 
1516 #ifndef U_HIDE_DEPRECATED_API
1517     /**
1518      * Gets the value for a given time field. Subclasses can use this function to get
1519      * field values without forcing recomputation of time.
1520      *
1521      * @param field  The given time field.
1522      * @return       The value for the given time field.
1523      * @deprecated ICU 2.6. Use internalGet(UCalendarDateFields field) instead.
1524      */
1525     inline int32_t internalGet(EDateFields field) const {return fFields[field];}
1526 #endif  /* U_HIDE_DEPRECATED_API */
1527 
1528 #ifndef U_HIDE_INTERNAL_API
1529     /**
1530      * Gets the value for a given time field. Subclasses can use this function to get
1531      * field values without forcing recomputation of time. If the field's stamp is UNSET,
1532      * the defaultValue is used.
1533      *
1534      * @param field  The given time field.
1535      * @param defaultValue a default value used if the field is unset.
1536      * @return       The value for the given time field.
1537      * @internal
1538      */
1539     inline int32_t internalGet(UCalendarDateFields field, int32_t defaultValue) const {return fStamp[field]>kUnset ? fFields[field] : defaultValue;}
1540 
1541     /**
1542      * Gets the value for a given time field. Subclasses can use this function to get
1543      * field values without forcing recomputation of time.
1544      *
1545      * @param field  The given time field.
1546      * @return       The value for the given time field.
1547      * @internal
1548      */
1549     inline int32_t internalGet(UCalendarDateFields field) const {return fFields[field];}
1550 
1551     /**
1552      * The year in this calendar is counting from 1 backward if the era is 0.
1553      * @return The year in era 0 of this calendar is counting backward from 1.
1554      * @internal
1555      */
1556     virtual bool isEra0CountingBackward() const { return false; }
1557 #endif  /* U_HIDE_INTERNAL_API */
1558 
1559     /**
1560      * Use this function instead of internalGet(UCAL_MONTH). The implementation
1561      * check the timestamp of UCAL_MONTH and UCAL_ORDINAL_MONTH and use the
1562      * one set later. The subclass should override it to conver the value of UCAL_ORDINAL_MONTH
1563      * to UCAL_MONTH correctly if UCAL_ORDINAL_MONTH has higher priority.
1564      *
1565      * @return       The value for the UCAL_MONTH.
1566      * @internal
1567      */
1568     virtual int32_t internalGetMonth(UErrorCode& status) const;
1569 
1570     /**
1571      * Use this function instead of internalGet(UCAL_MONTH, defaultValue). The implementation
1572      * check the timestamp of UCAL_MONTH and UCAL_ORDINAL_MONTH and use the
1573      * one set later. The subclass should override it to conver the value of UCAL_ORDINAL_MONTH
1574      * to UCAL_MONTH correctly if UCAL_ORDINAL_MONTH has higher priority.
1575      *
1576      * @param defaultValue a default value used if the UCAL_MONTH and
1577      *   UCAL_ORDINAL are both unset.
1578      * @param status Output param set to failure code on function return
1579      *          when this function fails.
1580      * @return       The value for the UCAL_MONTH.
1581      * @internal
1582      */
1583     virtual int32_t internalGetMonth(int32_t defaultValue, UErrorCode& status) const;
1584 
1585 #ifndef U_HIDE_DEPRECATED_API
1586     /**
1587      * Sets the value for a given time field.  This is a fast internal method for
1588      * subclasses.  It does not affect the areFieldsInSync, isTimeSet, or areAllFieldsSet
1589      * flags.
1590      *
1591      * @param field    The given time field.
1592      * @param value    The value for the given time field.
1593      * @deprecated ICU 2.6. Use internalSet(UCalendarDateFields field, int32_t value) instead.
1594      */
1595     void internalSet(EDateFields field, int32_t value);
1596 #endif  /* U_HIDE_DEPRECATED_API */
1597 
1598     /**
1599      * Sets the value for a given time field.  This is a fast internal method for
1600      * subclasses.  It does not affect the areFieldsInSync, isTimeSet, or areAllFieldsSet
1601      * flags.
1602      *
1603      * @param field    The given time field.
1604      * @param value    The value for the given time field.
1605      * @stable ICU 2.6.
1606      */
1607     inline void internalSet(UCalendarDateFields field, int32_t value);
1608 
1609     /**
1610      * Prepare this calendar for computing the actual minimum or maximum.
1611      * This method modifies this calendar's fields; it is called on a
1612      * temporary calendar.
1613      * @internal
1614      */
1615     virtual void prepareGetActual(UCalendarDateFields field, UBool isMinimum, UErrorCode &status);
1616 
1617     /**
1618      * Limit enums. Not in sync with UCalendarLimitType (refers to internal fields).
1619      * @internal
1620      */
1621     enum ELimitType {
1622 #ifndef U_HIDE_INTERNAL_API
1623       UCAL_LIMIT_MINIMUM = 0,
1624       UCAL_LIMIT_GREATEST_MINIMUM,
1625       UCAL_LIMIT_LEAST_MAXIMUM,
1626       UCAL_LIMIT_MAXIMUM,
1627       UCAL_LIMIT_COUNT
1628 #endif  /* U_HIDE_INTERNAL_API */
1629     };
1630 
1631     /**
1632      * Subclass API for defining limits of different types.
1633      * Subclasses must implement this method to return limits for the
1634      * following fields:
1635      *
1636      * <pre>UCAL_ERA
1637      * UCAL_YEAR
1638      * UCAL_MONTH
1639      * UCAL_WEEK_OF_YEAR
1640      * UCAL_WEEK_OF_MONTH
1641      * UCAL_DATE (DAY_OF_MONTH on Java)
1642      * UCAL_DAY_OF_YEAR
1643      * UCAL_DAY_OF_WEEK_IN_MONTH
1644      * UCAL_YEAR_WOY
1645      * UCAL_EXTENDED_YEAR</pre>
1646      *
1647      * @param field one of the above field numbers
1648      * @param limitType one of <code>MINIMUM</code>, <code>GREATEST_MINIMUM</code>,
1649      * <code>LEAST_MAXIMUM</code>, or <code>MAXIMUM</code>
1650      * @internal
1651      */
1652     virtual int32_t handleGetLimit(UCalendarDateFields field, ELimitType limitType) const = 0;
1653 
1654     /**
1655      * Return a limit for a field.
1656      * @param field the field, from <code>0..UCAL_MAX_FIELD</code>
1657      * @param limitType the type specifier for the limit
1658      * @see #ELimitType
1659      * @internal
1660      */
1661     virtual int32_t getLimit(UCalendarDateFields field, ELimitType limitType) const;
1662 
1663     /**
1664      * Return the Julian day number of day before the first day of the
1665      * given month in the given extended year.  Subclasses should override
1666      * this method to implement their calendar system.
1667      * @param eyear the extended year
1668      * @param month the zero-based month, or 0 if useMonth is false
1669      * @param useMonth if false, compute the day before the first day of
1670      * the given year, otherwise, compute the day before the first day of
1671      * the given month
1672      * @param status Output param set to failure code on function return
1673      *          when this function fails.
1674      * @return the Julian day number of the day before the first
1675      * day of the given month and year
1676      * @internal
1677      */
1678     virtual int64_t handleComputeMonthStart(int32_t eyear, int32_t month,
1679                                             UBool useMonth, UErrorCode& status) const  = 0;
1680 
1681     /**
1682      * Return the number of days in the given month of the given extended
1683      * year of this calendar system.  Subclasses should override this
1684      * method if they can provide a more correct or more efficient
1685      * implementation than the default implementation in Calendar.
1686      * @internal
1687      */
1688     virtual int32_t handleGetMonthLength(int32_t extendedYear, int32_t month, UErrorCode& status) const ;
1689 
1690     /**
1691      * Return the number of days in the given extended year of this
1692      * calendar system.  Subclasses should override this method if they can
1693      * provide a more correct or more efficient implementation than the
1694      * default implementation in Calendar.
1695      * @stable ICU 2.0
1696      */
1697     virtual int32_t handleGetYearLength(int32_t eyear) const;
1698 
1699 
1700     /**
1701      * Return the extended year defined by the current fields.  This will
1702      * use the UCAL_EXTENDED_YEAR field or the UCAL_YEAR and supra-year fields (such
1703      * as UCAL_ERA) specific to the calendar system, depending on which set of
1704      * fields is newer.
1705      * @param status        ICU Error Code
1706      * @return the extended year
1707      * @internal
1708      */
1709     virtual int32_t handleGetExtendedYear(UErrorCode& status) = 0;
1710 
1711     /**
1712      * Subclasses may override this.  This method calls
1713      * handleGetMonthLength() to obtain the calendar-specific month
1714      * length.
1715      * @param bestField which field to use to calculate the date
1716      * @param status        ICU Error Code
1717      * @return julian day specified by calendar fields.
1718      * @internal
1719      */
1720     virtual int32_t handleComputeJulianDay(UCalendarDateFields bestField, UErrorCode &status);
1721 
1722     /**
1723      * Subclasses must override this to convert from week fields
1724      * (YEAR_WOY and WEEK_OF_YEAR) to an extended year in the case
1725      * where YEAR, EXTENDED_YEAR are not set.
1726      * The Calendar implementation assumes yearWoy is in extended gregorian form
1727      * @return the extended year, UCAL_EXTENDED_YEAR
1728      * @internal
1729      */
1730     virtual int32_t handleGetExtendedYearFromWeekFields(int32_t yearWoy, int32_t woy, UErrorCode& status);
1731 
1732     /**
1733      * Validate a single field of this calendar.  Subclasses should
1734      * override this method to validate any calendar-specific fields.
1735      * Generic fields can be handled by `Calendar::validateField()`.
1736      * @internal
1737      */
1738     virtual void validateField(UCalendarDateFields field, UErrorCode &status);
1739 
1740 #ifndef U_HIDE_INTERNAL_API
1741     /**
1742      * Compute the Julian day from fields.  Will determine whether to use
1743      * the JULIAN_DAY field directly, or other fields.
1744      * @param status        ICU Error Code
1745      * @return the julian day
1746      * @internal
1747      */
1748     int32_t computeJulianDay(UErrorCode &status);
1749 
1750     /**
1751      * Compute the milliseconds in the day from the fields.  This is a
1752      * value from 0 to 23:59:59.999 inclusive, unless fields are out of
1753      * range, in which case it can be an arbitrary value.  This value
1754      * reflects local zone wall time.
1755      * @internal
1756      */
1757     double computeMillisInDay();
1758 
1759     /**
1760      * This method can assume EXTENDED_YEAR has been set.
1761      * @param millis milliseconds of the date fields
1762      * @param millisInDay milliseconds of the time fields; may be out
1763      * or range.
1764      * @param ec Output param set to failure code on function return
1765      *          when this function fails.
1766      * @internal
1767      */
1768     int32_t computeZoneOffset(double millis, double millisInDay, UErrorCode &ec);
1769 
1770 
1771     /**
1772      * Determine the best stamp in a range.
1773      * @param start first enum to look at
1774      * @param end last enum to look at
1775      * @param bestSoFar stamp prior to function call
1776      * @return the stamp value of the best stamp
1777      * @internal
1778      */
1779     int32_t newestStamp(UCalendarDateFields start, UCalendarDateFields end, int32_t bestSoFar) const;
1780 
1781     /**
1782      * Marker for end of resolve set (row or group). Value for field resolution tables.
1783      *
1784      * @see #resolveFields
1785      * @internal
1786      */
1787     static constexpr int32_t kResolveSTOP = -1;
1788     /**
1789      * Value to be bitwised "ORed" against resolve table field values for remapping.
1790      * Example: (UCAL_DATE | kResolveRemap) in 1st column will cause 'UCAL_DATE' to be returned,
1791      * but will not examine the value of UCAL_DATE.
1792      * Value for field resolution tables.
1793      *
1794      * @see #resolveFields
1795      * @internal
1796      */
1797     static constexpr int32_t kResolveRemap = 32;
1798 
1799     /**
1800      * Precedence table for Dates
1801      * @see #resolveFields
1802      * @internal
1803      */
1804     static const UFieldResolutionTable kDatePrecedence[];
1805 
1806     /**
1807      * Precedence table for Year
1808      * @see #resolveFields
1809      * @internal
1810      */
1811     static const UFieldResolutionTable kYearPrecedence[];
1812 
1813     /**
1814      * Precedence table for Day of Week
1815      * @see #resolveFields
1816      * @internal
1817      */
1818     static const UFieldResolutionTable kDOWPrecedence[];
1819 
1820     /**
1821      * Precedence table for Months
1822      * @see #resolveFields
1823      * @internal
1824      */
1825     static const UFieldResolutionTable kMonthPrecedence[];
1826 
1827     /**
1828      * Given a precedence table, return the newest field combination in
1829      * the table, or UCAL_FIELD_COUNT if none is found.
1830      *
1831      * <p>The precedence table is a 3-dimensional array of integers.  It
1832      * may be thought of as an array of groups.  Each group is an array of
1833      * lines.  Each line is an array of field numbers.  Within a line, if
1834      * all fields are set, then the time stamp of the line is taken to be
1835      * the stamp of the most recently set field.  If any field of a line is
1836      * unset, then the line fails to match.  Within a group, the line with
1837      * the newest time stamp is selected.  The first field of the line is
1838      * returned to indicate which line matched.
1839      *
1840      * <p>In some cases, it may be desirable to map a line to field that
1841      * whose stamp is NOT examined.  For example, if the best field is
1842      * DAY_OF_WEEK then the DAY_OF_WEEK_IN_MONTH algorithm may be used.  In
1843      * order to do this, insert the value <code>kResolveRemap | F</code> at
1844      * the start of the line, where <code>F</code> is the desired return
1845      * field value.  This field will NOT be examined; it only determines
1846      * the return value if the other fields in the line are the newest.
1847      *
1848      * <p>If all lines of a group contain at least one unset field, then no
1849      * line will match, and the group as a whole will fail to match.  In
1850      * that case, the next group will be processed.  If all groups fail to
1851      * match, then UCAL_FIELD_COUNT is returned.
1852      * @internal
1853      */
1854     UCalendarDateFields resolveFields(const UFieldResolutionTable *precedenceTable) const;
1855 #endif  /* U_HIDE_INTERNAL_API */
1856 
1857 
1858     /**
1859      * @internal
1860      */
1861     virtual const UFieldResolutionTable* getFieldResolutionTable() const;
1862 
1863 #ifndef U_HIDE_INTERNAL_API
1864     /**
1865      * Return the field that is newer, either defaultField, or
1866      * alternateField.  If neither is newer or neither is set, return defaultField.
1867      * @internal
1868      */
1869     UCalendarDateFields newerField(UCalendarDateFields defaultField, UCalendarDateFields alternateField) const;
1870 #endif  /* U_HIDE_INTERNAL_API */
1871 
1872 
1873 private:
1874     /**
1875      * Helper function for calculating limits by trial and error
1876      * @param field The field being investigated
1877      * @param startValue starting (least max) value of field
1878      * @param endValue ending (greatest max) value of field
1879      * @param status return type
1880      * @internal (private)
1881      */
1882     int32_t getActualHelper(UCalendarDateFields field, int32_t startValue, int32_t endValue, UErrorCode &status) const;
1883 
1884 
1885 protected:
1886     /**
1887      * The flag which indicates if the current time is set in the calendar.
1888      * @stable ICU 2.0
1889      */
1890     UBool      fIsTimeSet;
1891 
1892     /**
1893      * True if the fields are in sync with the currently set time of this Calendar.
1894      * If false, then the next attempt to get the value of a field will
1895      * force a recomputation of all fields from the current value of the time
1896      * field.
1897      * <P>
1898      * This should really be named areFieldsInSync, but the old name is retained
1899      * for backward compatibility.
1900      * @stable ICU 2.0
1901      */
1902     UBool      fAreFieldsSet;
1903 
1904     /**
1905      * True if all of the fields have been set.  This is initially false, and set to
1906      * true by computeFields().
1907      * @stable ICU 2.0
1908      */
1909     UBool      fAreAllFieldsSet;
1910 
1911     /**
1912      * True if all fields have been virtually set, but have not yet been
1913      * computed.  This occurs only in setTimeInMillis().  A calendar set
1914      * to this state will compute all fields from the time if it becomes
1915      * necessary, but otherwise will delay such computation.
1916      * @stable ICU 3.0
1917      */
1918     UBool fAreFieldsVirtuallySet;
1919 
1920     /**
1921      * Get the current time without recomputing.
1922      *
1923      * @return     the current time without recomputing.
1924      * @stable ICU 2.0
1925      */
1926     UDate internalGetTime() const { return fTime; }
1927 
1928     /**
1929      * Set the current time without affecting flags or fields.
1930      *
1931      * @param time    The time to be set
1932      * @return        the current time without recomputing.
1933      * @stable ICU 2.0
1934      */
1935     void        internalSetTime(UDate time)     { fTime = time; }
1936 
1937     /**
1938      * The time fields containing values into which the millis is computed.
1939      * @stable ICU 2.0
1940      */
1941     int32_t     fFields[UCAL_FIELD_COUNT];
1942 
1943 #ifndef U_FORCE_HIDE_DEPRECATED_API
1944     /**
1945      * The flags which tell if a specified time field for the calendar is set.
1946      * @deprecated ICU 2.8 use (fStamp[n]!=kUnset)
1947      */
1948     UBool      fIsSet[UCAL_FIELD_COUNT];
1949 #endif  // U_FORCE_HIDE_DEPRECATED_API
1950 
1951     /** Special values of stamp[]
1952      * @stable ICU 2.0
1953      */
1954     enum {
1955         kUnset                 = 0,
1956         kInternallySet,
1957         kMinimumUserStamp
1958     };
1959 
1960     /**
1961      * Pseudo-time-stamps which specify when each field was set. There
1962      * are two special values, UNSET and INTERNALLY_SET. Values from
1963      * MINIMUM_USER_SET to Integer.MAX_VALUE are legal user set values.
1964      * @stable ICU 2.0
1965      */
1966     int32_t        fStamp[UCAL_FIELD_COUNT];
1967 
1968     /**
1969      * Subclasses may override this method to compute several fields
1970      * specific to each calendar system.  These are:
1971      *
1972      * <ul><li>ERA
1973      * <li>YEAR
1974      * <li>MONTH
1975      * <li>DAY_OF_MONTH
1976      * <li>DAY_OF_YEAR
1977      * <li>EXTENDED_YEAR</ul>
1978      *
1979      * Subclasses can refer to the DAY_OF_WEEK and DOW_LOCAL fields, which
1980      * will be set when this method is called.  Subclasses can also call
1981      * the getGregorianXxx() methods to obtain Gregorian calendar
1982      * equivalents for the given Julian day.
1983      *
1984      * <p>In addition, subclasses should compute any subclass-specific
1985      * fields, that is, fields from BASE_FIELD_COUNT to
1986      * getFieldCount() - 1.
1987      *
1988      * <p>The default implementation in <code>Calendar</code> implements
1989      * a pure proleptic Gregorian calendar.
1990      * @internal
1991      */
1992     virtual void handleComputeFields(int32_t julianDay, UErrorCode &status);
1993 
1994 #ifndef U_HIDE_INTERNAL_API
1995     /**
1996      * Return the extended year on the Gregorian calendar as computed by
1997      * <code>computeGregorianFields()</code>.
1998      * @internal
1999      */
2000     int32_t getGregorianYear() const {
2001         return fGregorianYear;
2002     }
2003 
2004     /**
2005      * Return the month (0-based) on the Gregorian calendar as computed by
2006      * <code>computeGregorianFields()</code>.
2007      * @internal
2008      */
2009     int32_t getGregorianMonth() const {
2010         return fGregorianMonth;
2011     }
2012 
2013     /**
2014      * Return the day of year (1-based) on the Gregorian calendar as
2015      * computed by <code>computeGregorianFields()</code>.
2016      * @internal
2017      */
2018     int32_t getGregorianDayOfYear() const {
2019         return fGregorianDayOfYear;
2020     }
2021 
2022     /**
2023      * Return the day of month (1-based) on the Gregorian calendar as
2024      * computed by <code>computeGregorianFields()</code>.
2025      * @internal
2026      */
2027     int32_t getGregorianDayOfMonth() const {
2028       return fGregorianDayOfMonth;
2029     }
2030 #endif  /* U_HIDE_INTERNAL_API */
2031 
2032     /**
2033      * Called by computeJulianDay.  Returns the default month (0-based) for the year,
2034      * taking year and era into account.  Defaults to 0 for Gregorian, which doesn't care.
2035      * @param eyear The extended year
2036      * @param status Output param set to failure code on function return
2037      *          when this function fails.
2038      * @internal
2039      */
2040     virtual int32_t getDefaultMonthInYear(int32_t eyear, UErrorCode& status);
2041 
2042 
2043     /**
2044      * Called by computeJulianDay.  Returns the default day (1-based) for the month,
2045      * taking currently-set year and era into account.  Defaults to 1 for Gregorian.
2046      * @param eyear the extended year
2047      * @param month the month in the year
2048      * @param status Output param set to failure code on function return
2049      *          when this function fails.
2050      * @internal
2051      */
2052     virtual int32_t getDefaultDayInMonth(int32_t eyear, int32_t month, UErrorCode& status);
2053 
2054     //-------------------------------------------------------------------------
2055     // Protected utility methods for use by subclasses.  These are very handy
2056     // for implementing add, roll, and computeFields.
2057     //-------------------------------------------------------------------------
2058 
2059     /**
2060      * Adjust the specified field so that it is within
2061      * the allowable range for the date to which this calendar is set.
2062      * For example, in a Gregorian calendar pinning the {@link #UCalendarDateFields DAY_OF_MONTH}
2063      * field for a calendar set to April 31 would cause it to be set
2064      * to April 30.
2065      * <p>
2066      * <b>Subclassing:</b>
2067      * <br>
2068      * This utility method is intended for use by subclasses that need to implement
2069      * their own overrides of {@link #roll roll} and {@link #add add}.
2070      * <p>
2071      * <b>Note:</b>
2072      * <code>pinField</code> is implemented in terms of
2073      * {@link #getActualMinimum getActualMinimum}
2074      * and {@link #getActualMaximum getActualMaximum}.  If either of those methods uses
2075      * a slow, iterative algorithm for a particular field, it would be
2076      * unwise to attempt to call <code>pinField</code> for that field.  If you
2077      * really do need to do so, you should override this method to do
2078      * something more efficient for that field.
2079      * <p>
2080      * @param field The calendar field whose value should be pinned.
2081      * @param status Output param set to failure code on function return
2082      *          when this function fails.
2083      *
2084      * @see #getActualMinimum
2085      * @see #getActualMaximum
2086      * @stable ICU 2.0
2087      */
2088     virtual void pinField(UCalendarDateFields field, UErrorCode& status);
2089 
2090     /**
2091      * Return the week number of a day, within a period. This may be the week number in
2092      * a year or the week number in a month. Usually this will be a value >= 1, but if
2093      * some initial days of the period are excluded from week 1, because
2094      * {@link #getMinimalDaysInFirstWeek getMinimalDaysInFirstWeek} is > 1, then
2095      * the week number will be zero for those
2096      * initial days. This method requires the day number and day of week for some
2097      * known date in the period in order to determine the day of week
2098      * on the desired day.
2099      * <p>
2100      * <b>Subclassing:</b>
2101      * <br>
2102      * This method is intended for use by subclasses in implementing their
2103      * {@link #computeTime computeTime} and/or {@link #computeFields computeFields} methods.
2104      * It is often useful in {@link #getActualMinimum getActualMinimum} and
2105      * {@link #getActualMaximum getActualMaximum} as well.
2106      * <p>
2107      * This variant is handy for computing the week number of some other
2108      * day of a period (often the first or last day of the period) when its day
2109      * of the week is not known but the day number and day of week for some other
2110      * day in the period (e.g. the current date) <em>is</em> known.
2111      * <p>
2112      * @param desiredDay    The {@link #UCalendarDateFields DAY_OF_YEAR} or
2113      *              {@link #UCalendarDateFields DAY_OF_MONTH} whose week number is desired.
2114      *              Should be 1 for the first day of the period.
2115      *
2116      * @param dayOfPeriod   The {@link #UCalendarDateFields DAY_OF_YEAR}
2117      *              or {@link #UCalendarDateFields DAY_OF_MONTH} for a day in the period whose
2118      *              {@link #UCalendarDateFields DAY_OF_WEEK} is specified by the
2119      *              <code>knownDayOfWeek</code> parameter.
2120      *              Should be 1 for first day of period.
2121      *
2122      * @param dayOfWeek  The {@link #UCalendarDateFields DAY_OF_WEEK} for the day
2123      *              corresponding to the <code>knownDayOfPeriod</code> parameter.
2124      *              1-based with 1=Sunday.
2125      *
2126      * @return      The week number (one-based), or zero if the day falls before
2127      *              the first week because
2128      *              {@link #getMinimalDaysInFirstWeek getMinimalDaysInFirstWeek}
2129      *              is more than one.
2130      *
2131      * @stable ICU 2.8
2132      */
2133     int32_t weekNumber(int32_t desiredDay, int32_t dayOfPeriod, int32_t dayOfWeek);
2134 
2135 
2136 #ifndef U_HIDE_INTERNAL_API
2137     /**
2138      * Return the week number of a day, within a period. This may be the week number in
2139      * a year, or the week number in a month. Usually this will be a value >= 1, but if
2140      * some initial days of the period are excluded from week 1, because
2141      * {@link #getMinimalDaysInFirstWeek getMinimalDaysInFirstWeek} is > 1,
2142      * then the week number will be zero for those
2143      * initial days. This method requires the day of week for the given date in order to
2144      * determine the result.
2145      * <p>
2146      * <b>Subclassing:</b>
2147      * <br>
2148      * This method is intended for use by subclasses in implementing their
2149      * {@link #computeTime computeTime} and/or {@link #computeFields computeFields} methods.
2150      * It is often useful in {@link #getActualMinimum getActualMinimum} and
2151      * {@link #getActualMaximum getActualMaximum} as well.
2152      * <p>
2153      * @param dayOfPeriod   The {@link #UCalendarDateFields DAY_OF_YEAR} or
2154      *                      {@link #UCalendarDateFields DAY_OF_MONTH} whose week number is desired.
2155      *                      Should be 1 for the first day of the period.
2156      *
2157      * @param dayOfWeek     The {@link #UCalendarDateFields DAY_OF_WEEK} for the day
2158      *                      corresponding to the <code>dayOfPeriod</code> parameter.
2159      *                      1-based with 1=Sunday.
2160      *
2161      * @return      The week number (one-based), or zero if the day falls before
2162      *              the first week because
2163      *              {@link #getMinimalDaysInFirstWeek getMinimalDaysInFirstWeek}
2164      *              is more than one.
2165      * @internal
2166      */
2167     inline int32_t weekNumber(int32_t dayOfPeriod, int32_t dayOfWeek);
2168 
2169     /**
2170      * returns the local DOW, valid range 0..6
2171      * @internal
2172      */
2173     int32_t getLocalDOW(UErrorCode& status);
2174 #endif  /* U_HIDE_INTERNAL_API */
2175 
2176 private:
2177 
2178     /**
2179      * The next available value for fStamp[]
2180      */
2181     int32_t fNextStamp;// = MINIMUM_USER_STAMP;
2182 
2183     /**
2184      * Recalculates the time stamp array (fStamp).
2185      * Resets fNextStamp to lowest next stamp value.
2186      */
2187     void recalculateStamp();
2188 
2189     /**
2190      * The current time set for the calendar.
2191      */
2192     UDate        fTime;
2193 
2194     /**
2195      * @see   #setLenient
2196      */
2197     UBool      fLenient;
2198 
2199     /**
2200      * Time zone affects the time calculation done by Calendar. Calendar subclasses use
2201      * the time zone data to produce the local time. Always set; never nullptr.
2202      */
2203     TimeZone*   fZone;
2204 
2205     /**
2206      * Option for repeated wall time
2207      * @see #setRepeatedWallTimeOption
2208      */
2209     UCalendarWallTimeOption fRepeatedWallTime;
2210 
2211     /**
2212      * Option for skipped wall time
2213      * @see #setSkippedWallTimeOption
2214      */
2215     UCalendarWallTimeOption fSkippedWallTime;
2216 
2217     /**
2218      * Both firstDayOfWeek and minimalDaysInFirstWeek are locale-dependent. They are
2219      * used to figure out the week count for a specific date for a given locale. These
2220      * must be set when a Calendar is constructed. For example, in US locale,
2221      * firstDayOfWeek is SUNDAY; minimalDaysInFirstWeek is 1. They are used to figure
2222      * out the week count for a specific date for a given locale. These must be set when
2223      * a Calendar is constructed.
2224      */
2225     UCalendarDaysOfWeek fFirstDayOfWeek;
2226     uint8_t     fMinimalDaysInFirstWeek;
2227     UCalendarDaysOfWeek fWeekendOnset;
2228     int32_t fWeekendOnsetMillis;
2229     UCalendarDaysOfWeek fWeekendCease;
2230     int32_t fWeekendCeaseMillis;
2231 
2232     /**
2233      * Sets firstDayOfWeek and minimalDaysInFirstWeek. Called at Calendar construction
2234      * time.
2235      *
2236      * @param desiredLocale  The given locale.
2237      * @param type           The calendar type identifier, e.g: gregorian, buddhist, etc.
2238      * @param success        Indicates the status of setting the week count data from
2239      *                       the resource for the given locale. Returns U_ZERO_ERROR if
2240      *                       constructed successfully.
2241      */
2242     void        setWeekData(const Locale& desiredLocale, const char *type, UErrorCode& success);
2243 
2244     /**
2245      * Recompute the time and update the status fields isTimeSet
2246      * and areFieldsSet.  Callers should check isTimeSet and only
2247      * call this method if isTimeSet is false.
2248      *
2249      * @param status  Output param set to success/failure code on exit. If any value
2250      *                previously set in the time field is invalid or restricted by
2251      *                leniency, this will be set to an error status.
2252      */
2253     void updateTime(UErrorCode& status);
2254 
2255     /**
2256      * The Gregorian year, as computed by computeGregorianFields() and
2257      * returned by getGregorianYear().
2258      * @see #computeGregorianFields
2259      */
2260     int32_t fGregorianYear;
2261 
2262     /**
2263      * The Gregorian month, as computed by computeGregorianFields() and
2264      * returned by getGregorianMonth().
2265      * @see #computeGregorianFields
2266      */
2267     int32_t fGregorianMonth;
2268 
2269     /**
2270      * The Gregorian day of the year, as computed by
2271      * computeGregorianFields() and returned by getGregorianDayOfYear().
2272      * @see #computeGregorianFields
2273      */
2274     int32_t fGregorianDayOfYear;
2275 
2276     /**
2277      * The Gregorian day of the month, as computed by
2278      * computeGregorianFields() and returned by getGregorianDayOfMonth().
2279      * @see #computeGregorianFields
2280      */
2281     int32_t fGregorianDayOfMonth;
2282 
2283     /* calculations */
2284 
2285     /**
2286      * Compute the Gregorian calendar year, month, and day of month from
2287      * the given Julian day.  These values are not stored in fields, but in
2288      * member variables gregorianXxx.  Also compute the DAY_OF_WEEK and
2289      * DOW_LOCAL fields.
2290      */
2291     void computeGregorianAndDOWFields(int32_t julianDay, UErrorCode &ec);
2292 
2293 protected:
2294 
2295     /**
2296      * Compute the Gregorian calendar year, month, and day of month from the
2297      * Julian day.  These values are not stored in fields, but in member
2298      * variables gregorianXxx.  They are used for time zone computations and by
2299      * subclasses that are Gregorian derivatives.  Subclasses may call this
2300      * method to perform a Gregorian calendar millis->fields computation.
2301      */
2302     void computeGregorianFields(int32_t julianDay, UErrorCode &ec);
2303 
2304 private:
2305 
2306     /**
2307      * Compute the fields WEEK_OF_YEAR, YEAR_WOY, WEEK_OF_MONTH,
2308      * DAY_OF_WEEK_IN_MONTH, and DOW_LOCAL from EXTENDED_YEAR, YEAR,
2309      * DAY_OF_WEEK, and DAY_OF_YEAR.  The latter fields are computed by the
2310      * subclass based on the calendar system.
2311      *
2312      * <p>The YEAR_WOY field is computed simplistically.  It is equal to YEAR
2313      * most of the time, but at the year boundary it may be adjusted to YEAR-1
2314      * or YEAR+1 to reflect the overlap of a week into an adjacent year.  In
2315      * this case, a simple increment or decrement is performed on YEAR, even
2316      * though this may yield an invalid YEAR value.  For instance, if the YEAR
2317      * is part of a calendar system with an N-year cycle field CYCLE, then
2318      * incrementing the YEAR may involve incrementing CYCLE and setting YEAR
2319      * back to 0 or 1.  This is not handled by this code, and in fact cannot be
2320      * simply handled without having subclasses define an entire parallel set of
2321      * fields for fields larger than or equal to a year.  This additional
2322      * complexity is not warranted, since the intention of the YEAR_WOY field is
2323      * to support ISO 8601 notation, so it will typically be used with a
2324      * proleptic Gregorian calendar, which has no field larger than a year.
2325      */
2326     void computeWeekFields(UErrorCode &ec);
2327 
2328 
2329     /**
2330      * Ensure that each field is within its valid range by calling {@link
2331      * #validateField(int, int&)} on each field that has been set.  This method
2332      * should only be called if this calendar is not lenient.
2333      * @see #isLenient
2334      * @see #validateField(int, int&)
2335      */
2336     void validateFields(UErrorCode &status);
2337 
2338     /**
2339      * Validate a single field of this calendar given its minimum and
2340      * maximum allowed value.  If the field is out of range,
2341      * <code>U_ILLEGAL_ARGUMENT_ERROR</code> will be set.  Subclasses may
2342      * use this method in their implementation of {@link
2343      * #validateField(int, int&)}.
2344      */
2345     void validateField(UCalendarDateFields field, int32_t min, int32_t max, UErrorCode& status);
2346 
2347  protected:
2348 #ifndef U_HIDE_INTERNAL_API
2349     /**
2350      * Convert a quasi Julian date to the day of the week. The Julian date used here is
2351      * not a true Julian date, since it is measured from midnight, not noon. Return
2352      * value is one-based.
2353      *
2354      * @param julian  The given Julian date number.
2355      * @return   Day number from 1..7 (SUN..SAT).
2356      * @internal
2357      */
2358     static uint8_t julianDayToDayOfWeek(int32_t julian);
2359 #endif  /* U_HIDE_INTERNAL_API */
2360 
2361  private:
2362     char validLocale[ULOC_FULLNAME_CAPACITY];
2363     char actualLocale[ULOC_FULLNAME_CAPACITY];
2364 
2365  public:
2366 #if !UCONFIG_NO_SERVICE
2367     /**
2368      * INTERNAL FOR 2.6 --  Registration.
2369      */
2370 
2371 #ifndef U_HIDE_INTERNAL_API
2372     /**
2373      * Return a StringEnumeration over the locales available at the time of the call,
2374      * including registered locales.
2375      * @return a StringEnumeration over the locales available at the time of the call
2376      * @internal
2377      */
2378     static StringEnumeration* getAvailableLocales();
2379 
2380     /**
2381      * Register a new Calendar factory.  The factory will be adopted.
2382      * INTERNAL in 2.6
2383      *
2384      * Because ICU may choose to cache Calendars internally, this must
2385      * be called at application startup, prior to any calls to
2386      * Calendar::createInstance to avoid undefined behavior.
2387      *
2388      * @param toAdopt the factory instance to be adopted
2389      * @param status the in/out status code, no special meanings are assigned
2390      * @return a registry key that can be used to unregister this factory
2391      * @internal
2392      */
2393     static URegistryKey registerFactory(ICUServiceFactory* toAdopt, UErrorCode& status);
2394 
2395     /**
2396      * Unregister a previously-registered CalendarFactory using the key returned from the
2397      * register call.  Key becomes invalid after a successful call and should not be used again.
2398      * The CalendarFactory corresponding to the key will be deleted.
2399      * INTERNAL in 2.6
2400      *
2401      * Because ICU may choose to cache Calendars internally, this should
2402      * be called during application shutdown, after all calls to
2403      * Calendar::createInstance to avoid undefined behavior.
2404      *
2405      * @param key the registry key returned by a previous call to registerFactory
2406      * @param status the in/out status code, no special meanings are assigned
2407      * @return true if the factory for the key was successfully unregistered
2408      * @internal
2409      */
2410     static UBool unregister(URegistryKey key, UErrorCode& status);
2411 #endif  /* U_HIDE_INTERNAL_API */
2412 
2413     /**
2414      * Multiple Calendar Implementation
2415      * @internal
2416      */
2417     friend class CalendarFactory;
2418 
2419     /**
2420      * Multiple Calendar Implementation
2421      * @internal
2422      */
2423     friend class CalendarService;
2424 
2425     /**
2426      * Multiple Calendar Implementation
2427      * @internal
2428      */
2429     friend class DefaultCalendarFactory;
2430 #endif /* !UCONFIG_NO_SERVICE */
2431 
2432     /**
2433      * @return true if this calendar has a default century (i.e. 03 -> 2003)
2434      * @internal
2435      */
2436     virtual UBool haveDefaultCentury() const = 0;
2437 
2438     /**
2439      * @return the start of the default century, as a UDate
2440      * @internal
2441      */
2442     virtual UDate defaultCenturyStart() const = 0;
2443     /**
2444      * @return the beginning year of the default century, as a year
2445      * @internal
2446      */
2447     virtual int32_t defaultCenturyStartYear() const = 0;
2448 
2449     /** Get the locale for this calendar object. You can choose between valid and actual locale.
2450      *  @param type type of the locale we're looking for (valid or actual)
2451      *  @param status error code for the operation
2452      *  @return the locale
2453      *  @stable ICU 2.8
2454      */
2455     Locale getLocale(ULocDataLocaleType type, UErrorCode &status) const;
2456 
2457     /**
2458      * @return      The related Gregorian year; will be obtained by modifying the value
2459      *              obtained by get from UCAL_EXTENDED_YEAR field
2460      * @internal
2461      */
2462     virtual int32_t getRelatedYear(UErrorCode &status) const;
2463 
2464     /**
2465      * @param year  The related Gregorian year to set; will be modified as necessary then
2466      *              set in UCAL_EXTENDED_YEAR field
2467      * @internal
2468      */
2469     virtual void setRelatedYear(int32_t year);
2470 
2471 #ifndef U_HIDE_INTERNAL_API
2472     /** Get the locale for this calendar object. You can choose between valid and actual locale.
2473      *  @param type type of the locale we're looking for (valid or actual)
2474      *  @param status error code for the operation
2475      *  @return the locale
2476      *  @internal
2477      */
2478     const char* getLocaleID(ULocDataLocaleType type, UErrorCode &status) const;
2479 #endif  /* U_HIDE_INTERNAL_API */
2480 
2481 private:
2482     /**
2483      * Cast TimeZone used by this object to BasicTimeZone, or nullptr if the TimeZone
2484      * is not an instance of BasicTimeZone.
2485      */
2486     BasicTimeZone* getBasicTimeZone() const;
2487 
2488     /**
2489      * Find the previous zone transition near the given time.
2490      * @param base The base time, inclusive
2491      * @param transitionTime Receives the result time
2492      * @param status The error status
2493      * @return true if a transition is found.
2494      */
2495     UBool getImmediatePreviousZoneTransition(UDate base, UDate *transitionTime, UErrorCode& status) const;
2496 
2497 public:
2498 #ifndef U_HIDE_INTERNAL_API
2499     /**
2500      * Creates a new Calendar from a Locale for the cache.
2501      * This method does not set the time or timezone in returned calendar.
2502      * @param locale the locale.
2503      * @param status any error returned here.
2504      * @return the new Calendar object with no time or timezone set.
2505      * @internal For ICU use only.
2506      */
2507     static Calendar * U_EXPORT2 makeInstance(
2508             const Locale &locale, UErrorCode &status);
2509 
2510     /**
2511      * Get the calendar type for given locale.
2512      * @param locale the locale
2513      * @param typeBuffer calendar type returned here
2514      * @param typeBufferSize The size of typeBuffer in bytes. If the type
2515      *   can't fit in the buffer, this method sets status to
2516      *   U_BUFFER_OVERFLOW_ERROR
2517      * @param status error, if any, returned here.
2518      * @internal For ICU use only.
2519      */
2520     static void U_EXPORT2 getCalendarTypeFromLocale(
2521             const Locale &locale,
2522             char *typeBuffer,
2523             int32_t typeBufferSize,
2524             UErrorCode &status);
2525 #endif  /* U_HIDE_INTERNAL_API */
2526 };
2527 
2528 // -------------------------------------
2529 
2530 inline Calendar*
2531 Calendar::createInstance(TimeZone* zone, UErrorCode& errorCode)
2532 {
2533     // since the Locale isn't specified, use the default locale
2534     return createInstance(zone, Locale::getDefault(), errorCode);
2535 }
2536 
2537 // -------------------------------------
2538 
2539 inline void
2540 Calendar::roll(UCalendarDateFields field, UBool up, UErrorCode& status)
2541 {
2542     roll(field, static_cast<int32_t>(up ? +1 : -1), status);
2543 }
2544 
2545 #ifndef U_HIDE_DEPRECATED_API
2546 inline void
2547 Calendar::roll(EDateFields field, UBool up, UErrorCode& status)
2548 {
2549     roll(static_cast<UCalendarDateFields>(field), up, status);
2550 }
2551 #endif  /* U_HIDE_DEPRECATED_API */
2552 
2553 
2554 // -------------------------------------
2555 
2556 /**
2557  * Fast method for subclasses.  The caller must maintain fUserSetDSTOffset and
2558  * fUserSetZoneOffset, as well as the isSet[] array.
2559  */
2560 
2561 inline void
2562 Calendar::internalSet(UCalendarDateFields field, int32_t value)
2563 {
2564     fFields[field] = value;
2565     fStamp[field] = kInternallySet;
2566     fIsSet[field]     = true; // Remove later
2567 }
2568 
2569 /**
2570  * Macro for the class to declare it override
2571  * haveDefaultCentury, defaultCenturyStart, and
2572  * defaultCenturyStartYear functions in this class.
2573  * @internal
2574  */
2575 #define DECLARE_OVERRIDE_SYSTEM_DEFAULT_CENTURY \
2576     virtual UBool haveDefaultCentury() const override; \
2577     virtual UDate defaultCenturyStart() const override; \
2578     virtual int32_t defaultCenturyStartYear() const override;
2579 
2580 #ifndef U_HIDE_INTERNAL_API
2581 inline int32_t  Calendar::weekNumber(int32_t dayOfPeriod, int32_t dayOfWeek)
2582 {
2583   return weekNumber(dayOfPeriod, dayOfPeriod, dayOfWeek);
2584 }
2585 #endif  /* U_HIDE_INTERNAL_API */
2586 
2587 U_NAMESPACE_END
2588 
2589 #endif /* #if !UCONFIG_NO_FORMATTING */
2590 
2591 #endif /* U_SHOW_CPLUSPLUS_API */
2592 
2593 #endif // _CALENDAR