1 // © 2016 and later: Unicode, Inc. and others.
2 // License & terms of use: http://www.unicode.org/copyright.html
4 * Copyright (C) 1997-2013, International Business Machines Corporation and others.
6 ********************************************************************************
10 * Modification History:
12 * Date Name Description
13 * 04/22/97 aliu Overhauled header.
14 * 07/28/98 stephen Sync with JDK 1.2
15 * 09/04/98 stephen Re-sync with JDK 8/31 putback
16 * 09/14/98 stephen Changed type of kOneDay, kOneWeek to double.
18 * 10/15/99 aliu Fixed j31, incorrect WEEK_OF_YEAR computation.
19 * Added documentation of WEEK_OF_YEAR computation.
20 * 10/15/99 aliu Fixed j32, cannot set date to Feb 29 2000 AD.
21 * {JDK bug 4210209 4209272}
22 * 11/07/2003 srl Update, clean up documentation.
23 ********************************************************************************
29 #include "unicode/utypes.h"
31 #if U_SHOW_CPLUSPLUS_API
33 #if !UCONFIG_NO_FORMATTING
35 #include "unicode/calendar.h"
39 * \brief C++ API: Concrete class which provides the standard calendar.
45 * Concrete class which provides the standard calendar used by most of the world.
47 * The standard (Gregorian) calendar has 2 eras, BC and AD.
49 * This implementation handles a single discontinuity, which corresponds by default to
50 * the date the Gregorian calendar was originally instituted (October 15, 1582). Not all
51 * countries adopted the Gregorian calendar then, so this cutover date may be changed by
54 * Prior to the institution of the Gregorian Calendar, New Year's Day was March 25. To
55 * avoid confusion, this Calendar always uses January 1. A manual adjustment may be made
56 * if desired for dates that are prior to the Gregorian changeover and which fall
57 * between January 1 and March 24.
59 * <p>Values calculated for the <code>WEEK_OF_YEAR</code> field range from 1 to
60 * 53. Week 1 for a year is the first week that contains at least
61 * <code>getMinimalDaysInFirstWeek()</code> days from that year. It thus
62 * depends on the values of <code>getMinimalDaysInFirstWeek()</code>,
63 * <code>getFirstDayOfWeek()</code>, and the day of the week of January 1.
64 * Weeks between week 1 of one year and week 1 of the following year are
65 * numbered sequentially from 2 to 52 or 53 (as needed).
67 * <p>For example, January 1, 1998 was a Thursday. If
68 * <code>getFirstDayOfWeek()</code> is <code>MONDAY</code> and
69 * <code>getMinimalDaysInFirstWeek()</code> is 4 (these are the values
70 * reflecting ISO 8601 and many national standards), then week 1 of 1998 starts
71 * on December 29, 1997, and ends on January 4, 1998. If, however,
72 * <code>getFirstDayOfWeek()</code> is <code>SUNDAY</code>, then week 1 of 1998
73 * starts on January 4, 1998, and ends on January 10, 1998; the first three days
74 * of 1998 then are part of week 53 of 1997.
76 * <p>Example for using GregorianCalendar:
79 * // get the supported ids for GMT-08:00 (Pacific Standard Time)
80 * UErrorCode success = U_ZERO_ERROR;
81 * const StringEnumeration *ids = TimeZone::createEnumeration(-8 * 60 * 60 * 1000);
82 * // if no ids were returned, something is wrong. get out.
83 * if (ids == 0 || ids->count(success) == 0) {
88 * cout << "Current Time" << endl;
90 * // create a Pacific Standard Time time zone
91 * SimpleTimeZone* pdt = new SimpleTimeZone(-8 * 60 * 60 * 1000, ids->unext(NULL, success)));
93 * // set up rules for daylight savings time
94 * pdt->setStartRule(UCAL_MARCH, 1, UCAL_SUNDAY, 2 * 60 * 60 * 1000);
95 * pdt->setEndRule(UCAL_NOVEMBER, 2, UCAL_SUNDAY, 2 * 60 * 60 * 1000);
97 * // create a GregorianCalendar with the Pacific Daylight time zone
98 * // and the current date and time
99 * Calendar* calendar = new GregorianCalendar( pdt, success );
101 * // print out a bunch of interesting things
102 * cout << "ERA: " << calendar->get( UCAL_ERA, success ) << endl;
103 * cout << "YEAR: " << calendar->get( UCAL_YEAR, success ) << endl;
104 * cout << "MONTH: " << calendar->get( UCAL_MONTH, success ) << endl;
105 * cout << "WEEK_OF_YEAR: " << calendar->get( UCAL_WEEK_OF_YEAR, success ) << endl;
106 * cout << "WEEK_OF_MONTH: " << calendar->get( UCAL_WEEK_OF_MONTH, success ) << endl;
107 * cout << "DATE: " << calendar->get( UCAL_DATE, success ) << endl;
108 * cout << "DAY_OF_MONTH: " << calendar->get( UCAL_DAY_OF_MONTH, success ) << endl;
109 * cout << "DAY_OF_YEAR: " << calendar->get( UCAL_DAY_OF_YEAR, success ) << endl;
110 * cout << "DAY_OF_WEEK: " << calendar->get( UCAL_DAY_OF_WEEK, success ) << endl;
111 * cout << "DAY_OF_WEEK_IN_MONTH: " << calendar->get( UCAL_DAY_OF_WEEK_IN_MONTH, success ) << endl;
112 * cout << "AM_PM: " << calendar->get( UCAL_AM_PM, success ) << endl;
113 * cout << "HOUR: " << calendar->get( UCAL_HOUR, success ) << endl;
114 * cout << "HOUR_OF_DAY: " << calendar->get( UCAL_HOUR_OF_DAY, success ) << endl;
115 * cout << "MINUTE: " << calendar->get( UCAL_MINUTE, success ) << endl;
116 * cout << "SECOND: " << calendar->get( UCAL_SECOND, success ) << endl;
117 * cout << "MILLISECOND: " << calendar->get( UCAL_MILLISECOND, success ) << endl;
118 * cout << "ZONE_OFFSET: " << (calendar->get( UCAL_ZONE_OFFSET, success )/(60*60*1000)) << endl;
119 * cout << "DST_OFFSET: " << (calendar->get( UCAL_DST_OFFSET, success )/(60*60*1000)) << endl;
121 * cout << "Current Time, with hour reset to 3" << endl;
122 * calendar->clear(UCAL_HOUR_OF_DAY); // so doesn't override
123 * calendar->set(UCAL_HOUR, 3);
124 * cout << "ERA: " << calendar->get( UCAL_ERA, success ) << endl;
125 * cout << "YEAR: " << calendar->get( UCAL_YEAR, success ) << endl;
126 * cout << "MONTH: " << calendar->get( UCAL_MONTH, success ) << endl;
127 * cout << "WEEK_OF_YEAR: " << calendar->get( UCAL_WEEK_OF_YEAR, success ) << endl;
128 * cout << "WEEK_OF_MONTH: " << calendar->get( UCAL_WEEK_OF_MONTH, success ) << endl;
129 * cout << "DATE: " << calendar->get( UCAL_DATE, success ) << endl;
130 * cout << "DAY_OF_MONTH: " << calendar->get( UCAL_DAY_OF_MONTH, success ) << endl;
131 * cout << "DAY_OF_YEAR: " << calendar->get( UCAL_DAY_OF_YEAR, success ) << endl;
132 * cout << "DAY_OF_WEEK: " << calendar->get( UCAL_DAY_OF_WEEK, success ) << endl;
133 * cout << "DAY_OF_WEEK_IN_MONTH: " << calendar->get( UCAL_DAY_OF_WEEK_IN_MONTH, success ) << endl;
134 * cout << "AM_PM: " << calendar->get( UCAL_AM_PM, success ) << endl;
135 * cout << "HOUR: " << calendar->get( UCAL_HOUR, success ) << endl;
136 * cout << "HOUR_OF_DAY: " << calendar->get( UCAL_HOUR_OF_DAY, success ) << endl;
137 * cout << "MINUTE: " << calendar->get( UCAL_MINUTE, success ) << endl;
138 * cout << "SECOND: " << calendar->get( UCAL_SECOND, success ) << endl;
139 * cout << "MILLISECOND: " << calendar->get( UCAL_MILLISECOND, success ) << endl;
140 * cout << "ZONE_OFFSET: " << (calendar->get( UCAL_ZONE_OFFSET, success )/(60*60*1000)) << endl; // in hours
141 * cout << "DST_OFFSET: " << (calendar->get( UCAL_DST_OFFSET, success )/(60*60*1000)) << endl; // in hours
143 * if (U_FAILURE(success)) {
144 * cout << "An error occured. success=" << u_errorName(success) << endl;
148 * delete calendar; // also deletes pdt
153 class U_I18N_API GregorianCalendar
: public Calendar
{
157 * Useful constants for GregorianCalendar and TimeZone.
166 * Constructs a default GregorianCalendar using the current time in the default time
167 * zone with the default locale.
169 * @param success Indicates the status of GregorianCalendar object construction.
170 * Returns U_ZERO_ERROR if constructed successfully.
173 GregorianCalendar(UErrorCode
& success
);
176 * Constructs a GregorianCalendar based on the current time in the given time zone
177 * with the default locale. Clients are no longer responsible for deleting the given
178 * time zone object after it's adopted.
180 * @param zoneToAdopt The given timezone.
181 * @param success Indicates the status of GregorianCalendar object construction.
182 * Returns U_ZERO_ERROR if constructed successfully.
185 GregorianCalendar(TimeZone
* zoneToAdopt
, UErrorCode
& success
);
188 * Constructs a GregorianCalendar based on the current time in the given time zone
189 * with the default locale.
191 * @param zone The given timezone.
192 * @param success Indicates the status of GregorianCalendar object construction.
193 * Returns U_ZERO_ERROR if constructed successfully.
196 GregorianCalendar(const TimeZone
& zone
, UErrorCode
& success
);
199 * Constructs a GregorianCalendar based on the current time in the default time zone
200 * with the given locale.
202 * @param aLocale The given locale.
203 * @param success Indicates the status of GregorianCalendar object construction.
204 * Returns U_ZERO_ERROR if constructed successfully.
207 GregorianCalendar(const Locale
& aLocale
, UErrorCode
& success
);
210 * Constructs a GregorianCalendar based on the current time in the given time zone
211 * with the given locale. Clients are no longer responsible for deleting the given
212 * time zone object after it's adopted.
214 * @param zoneToAdopt The given timezone.
215 * @param aLocale The given locale.
216 * @param success Indicates the status of GregorianCalendar object construction.
217 * Returns U_ZERO_ERROR if constructed successfully.
220 GregorianCalendar(TimeZone
* zoneToAdopt
, const Locale
& aLocale
, UErrorCode
& success
);
223 * Constructs a GregorianCalendar based on the current time in the given time zone
224 * with the given locale.
226 * @param zone The given timezone.
227 * @param aLocale The given locale.
228 * @param success Indicates the status of GregorianCalendar object construction.
229 * Returns U_ZERO_ERROR if constructed successfully.
232 GregorianCalendar(const TimeZone
& zone
, const Locale
& aLocale
, UErrorCode
& success
);
235 * Constructs a GregorianCalendar with the given AD date set in the default time
236 * zone with the default locale.
238 * @param year The value used to set the YEAR time field in the calendar.
239 * @param month The value used to set the MONTH time field in the calendar. Month
240 * value is 0-based. e.g., 0 for January.
241 * @param date The value used to set the DATE time field in the calendar.
242 * @param success Indicates the status of GregorianCalendar object construction.
243 * Returns U_ZERO_ERROR if constructed successfully.
246 GregorianCalendar(int32_t year
, int32_t month
, int32_t date
, UErrorCode
& success
);
249 * Constructs a GregorianCalendar with the given AD date and time set for the
250 * default time zone with the default locale.
252 * @param year The value used to set the YEAR time field in the calendar.
253 * @param month The value used to set the MONTH time field in the calendar. Month
254 * value is 0-based. e.g., 0 for January.
255 * @param date The value used to set the DATE time field in the calendar.
256 * @param hour The value used to set the HOUR_OF_DAY time field in the calendar.
257 * @param minute The value used to set the MINUTE time field in the calendar.
258 * @param success Indicates the status of GregorianCalendar object construction.
259 * Returns U_ZERO_ERROR if constructed successfully.
262 GregorianCalendar(int32_t year
, int32_t month
, int32_t date
, int32_t hour
, int32_t minute
, UErrorCode
& success
);
265 * Constructs a GregorianCalendar with the given AD date and time set for the
266 * default time zone with the default locale.
268 * @param year The value used to set the YEAR time field in the calendar.
269 * @param month The value used to set the MONTH time field in the calendar. Month
270 * value is 0-based. e.g., 0 for January.
271 * @param date The value used to set the DATE time field in the calendar.
272 * @param hour The value used to set the HOUR_OF_DAY time field in the calendar.
273 * @param minute The value used to set the MINUTE time field in the calendar.
274 * @param second The value used to set the SECOND time field in the calendar.
275 * @param success Indicates the status of GregorianCalendar object construction.
276 * Returns U_ZERO_ERROR if constructed successfully.
279 GregorianCalendar(int32_t year
, int32_t month
, int32_t date
, int32_t hour
, int32_t minute
, int32_t second
, UErrorCode
& success
);
285 virtual ~GregorianCalendar();
289 * @param source the object to be copied.
292 GregorianCalendar(const GregorianCalendar
& source
);
295 * Default assignment operator
296 * @param right the object to be copied.
299 GregorianCalendar
& operator=(const GregorianCalendar
& right
);
302 * Create and return a polymorphic copy of this calendar.
303 * @return return a polymorphic copy of this calendar.
306 virtual GregorianCalendar
* clone() const;
309 * Sets the GregorianCalendar change date. This is the point when the switch from
310 * Julian dates to Gregorian dates occurred. Default is 00:00:00 local time, October
311 * 15, 1582. Previous to this time and date will be Julian dates.
313 * @param date The given Gregorian cutover date.
314 * @param success Output param set to success/failure code on exit.
317 void setGregorianChange(UDate date
, UErrorCode
& success
);
320 * Gets the Gregorian Calendar change date. This is the point when the switch from
321 * Julian dates to Gregorian dates occurred. Default is 00:00:00 local time, October
322 * 15, 1582. Previous to this time and date will be Julian dates.
324 * @return The Gregorian cutover time for this calendar.
327 UDate
getGregorianChange(void) const;
330 * Return true if the given year is a leap year. Determination of whether a year is
331 * a leap year is actually very complicated. We do something crude and mostly
332 * correct here, but for a real determination you need a lot of contextual
333 * information. For example, in Sweden, the change from Julian to Gregorian happened
334 * in a complex way resulting in missed leap years and double leap years between
335 * 1700 and 1753. Another example is that after the start of the Julian calendar in
336 * 45 B.C., the leap years did not regularize until 8 A.D. This method ignores these
337 * quirks, and pays attention only to the Julian onset date and the Gregorian
338 * cutover (which can be changed).
340 * @param year The given year.
341 * @return True if the given year is a leap year; false otherwise.
344 UBool
isLeapYear(int32_t year
) const;
347 * Returns TRUE if the given Calendar object is equivalent to this
348 * one. Calendar override.
350 * @param other the Calendar to be compared with this Calendar
353 virtual UBool
isEquivalentTo(const Calendar
& other
) const;
355 #ifndef U_FORCE_HIDE_DEPRECATED_API
357 * (Overrides Calendar) Rolls up or down by the given amount in the specified field.
358 * For more information, see the documentation for Calendar::roll().
360 * @param field The time field.
361 * @param amount Indicates amount to roll.
362 * @param status Output param set to success/failure code on exit. If any value
363 * previously set in the time field is invalid, this will be set to
365 * @deprecated ICU 2.6. Use roll(UCalendarDateFields field, int32_t amount, UErrorCode& status) instead.
367 virtual void roll(EDateFields field
, int32_t amount
, UErrorCode
& status
);
368 #endif // U_FORCE_HIDE_DEPRECATED_API
371 * (Overrides Calendar) Rolls up or down by the given amount in the specified field.
372 * For more information, see the documentation for Calendar::roll().
374 * @param field The time field.
375 * @param amount Indicates amount to roll.
376 * @param status Output param set to success/failure code on exit. If any value
377 * previously set in the time field is invalid, this will be set to
381 virtual void roll(UCalendarDateFields field
, int32_t amount
, UErrorCode
& status
);
383 #ifndef U_HIDE_DEPRECATED_API
385 * Return the minimum value that this field could have, given the current date.
386 * For the Gregorian calendar, this is the same as getMinimum() and getGreatestMinimum().
387 * @param field the time field.
388 * @return the minimum value that this field could have, given the current date.
389 * @deprecated ICU 2.6. Use getActualMinimum(UCalendarDateFields field) instead.
391 int32_t getActualMinimum(EDateFields field
) const;
394 * Return the minimum value that this field could have, given the current date.
395 * For the Gregorian calendar, this is the same as getMinimum() and getGreatestMinimum().
396 * @param field the time field.
398 * @return the minimum value that this field could have, given the current date.
399 * @deprecated ICU 2.6. Use getActualMinimum(UCalendarDateFields field) instead. (Added to ICU 3.0 for signature consistency)
401 int32_t getActualMinimum(EDateFields field
, UErrorCode
& status
) const;
402 #endif /* U_HIDE_DEPRECATED_API */
405 * Return the minimum value that this field could have, given the current date.
406 * For the Gregorian calendar, this is the same as getMinimum() and getGreatestMinimum().
407 * @param field the time field.
408 * @param status error result.
409 * @return the minimum value that this field could have, given the current date.
412 int32_t getActualMinimum(UCalendarDateFields field
, UErrorCode
&status
) const;
414 #ifndef U_HIDE_DEPRECATED_API
416 * Return the maximum value that this field could have, given the current date.
417 * For example, with the date "Feb 3, 1997" and the DAY_OF_MONTH field, the actual
418 * maximum would be 28; for "Feb 3, 1996" it s 29. Similarly for a Hebrew calendar,
419 * for some years the actual maximum for MONTH is 12, and for others 13.
420 * @param field the time field.
421 * @return the maximum value that this field could have, given the current date.
422 * @deprecated ICU 2.6. Use getActualMaximum(UCalendarDateFields field) instead.
424 int32_t getActualMaximum(EDateFields field
) const;
425 #endif /* U_HIDE_DEPRECATED_API */
428 * Return the maximum value that this field could have, given the current date.
429 * For example, with the date "Feb 3, 1997" and the DAY_OF_MONTH field, the actual
430 * maximum would be 28; for "Feb 3, 1996" it s 29. Similarly for a Hebrew calendar,
431 * for some years the actual maximum for MONTH is 12, and for others 13.
432 * @param field the time field.
433 * @param status returns any errors that may result from this function call.
434 * @return the maximum value that this field could have, given the current date.
437 virtual int32_t getActualMaximum(UCalendarDateFields field
, UErrorCode
& status
) const;
440 * (Overrides Calendar) Return true if the current date for this Calendar is in
441 * Daylight Savings Time. Recognizes DST_OFFSET, if it is set.
443 * @param status Fill-in parameter which receives the status of this operation.
444 * @return True if the current date for this Calendar is in Daylight Savings Time,
448 virtual UBool
inDaylightTime(UErrorCode
& status
) const;
453 * Override Calendar Returns a unique class ID POLYMORPHICALLY. Pure virtual
454 * override. This method is to implement a simple version of RTTI, since not all C++
455 * compilers support genuine RTTI. Polymorphic operator==() and clone() methods call
458 * @return The class ID for this object. All objects of a given class have the
459 * same class ID. Objects of other classes have different class IDs.
462 virtual UClassID
getDynamicClassID(void) const;
465 * Return the class ID for this class. This is useful only for comparing to a return
466 * value from getDynamicClassID(). For example:
468 * Base* polymorphic_pointer = createPolymorphicObject();
469 * if (polymorphic_pointer->getDynamicClassID() ==
470 * Derived::getStaticClassID()) ...
472 * @return The class ID for all objects of this class.
475 static UClassID U_EXPORT2
getStaticClassID(void);
478 * Returns the calendar type name string for this Calendar object.
479 * The returned string is the legacy ICU calendar attribute value,
480 * for example, "gregorian" or "japanese".
482 * For more details see the Calendar::getType() documentation.
484 * @return legacy calendar type name string
487 virtual const char * getType() const;
490 GregorianCalendar(); // default constructor not implemented
494 * Return the ERA. We need a special method for this because the
495 * default ERA is AD, but a zero (unset) ERA is BC.
499 virtual int32_t internalGetEra() const;
502 * Return the Julian day number of day before the first day of the
503 * given month in the given extended year. Subclasses should override
504 * this method to implement their calendar system.
505 * @param eyear the extended year
506 * @param month the zero-based month, or 0 if useMonth is false
507 * @param useMonth if false, compute the day before the first day of
508 * the given year, otherwise, compute the day before the first day of
510 * @return the Julian day number of the day before the first
511 * day of the given month and year
514 virtual int32_t handleComputeMonthStart(int32_t eyear
, int32_t month
,
515 UBool useMonth
) const;
518 * Subclasses may override this. This method calls
519 * handleGetMonthLength() to obtain the calendar-specific month
521 * @param bestField which field to use to calculate the date
522 * @return julian day specified by calendar fields.
525 virtual int32_t handleComputeJulianDay(UCalendarDateFields bestField
) ;
528 * Return the number of days in the given month of the given extended
529 * year of this calendar system. Subclasses should override this
530 * method if they can provide a more correct or more efficient
531 * implementation than the default implementation in Calendar.
534 virtual int32_t handleGetMonthLength(int32_t extendedYear
, int32_t month
) const;
537 * Return the number of days in the given extended year of this
538 * calendar system. Subclasses should override this method if they can
539 * provide a more correct or more efficient implementation than the
540 * default implementation in Calendar.
543 virtual int32_t handleGetYearLength(int32_t eyear
) const;
546 * return the length of the given month.
547 * @param month the given month.
548 * @return the length of the given month.
551 virtual int32_t monthLength(int32_t month
) const;
554 * return the length of the month according to the given year.
555 * @param month the given month.
556 * @param year the given year.
557 * @return the length of the month
560 virtual int32_t monthLength(int32_t month
, int32_t year
) const;
562 #ifndef U_HIDE_INTERNAL_API
564 * return the length of the given year.
565 * @param year the given year.
566 * @return the length of the given year.
569 int32_t yearLength(int32_t year
) const;
572 * return the length of the year field.
573 * @return the length of the year field
576 int32_t yearLength(void) const;
579 * After adjustments such as add(MONTH), add(YEAR), we don't want the
580 * month to jump around. E.g., we don't want Jan 31 + 1 month to go to Mar
581 * 3, we want it to go to Feb 28. Adjustments which might run into this
582 * problem call this method to retain the proper month.
585 void pinDayOfMonth(void);
586 #endif /* U_HIDE_INTERNAL_API */
589 * Return the day number with respect to the epoch. January 1, 1970 (Gregorian)
591 * @param status Fill-in parameter which receives the status of this operation.
592 * @return the day number with respect to the epoch.
595 virtual UDate
getEpochDay(UErrorCode
& status
);
598 * Subclass API for defining limits of different types.
599 * Subclasses must implement this method to return limits for the
607 * UCAL_DATE (DAY_OF_MONTH on Java)
609 * UCAL_DAY_OF_WEEK_IN_MONTH
611 * UCAL_EXTENDED_YEAR</pre>
613 * @param field one of the above field numbers
614 * @param limitType one of <code>MINIMUM</code>, <code>GREATEST_MINIMUM</code>,
615 * <code>LEAST_MAXIMUM</code>, or <code>MAXIMUM</code>
618 virtual int32_t handleGetLimit(UCalendarDateFields field
, ELimitType limitType
) const;
621 * Return the extended year defined by the current fields. This will
622 * use the UCAL_EXTENDED_YEAR field or the UCAL_YEAR and supra-year fields (such
623 * as UCAL_ERA) specific to the calendar system, depending on which set of
625 * @return the extended year
628 virtual int32_t handleGetExtendedYear();
631 * Subclasses may override this to convert from week fields
632 * (YEAR_WOY and WEEK_OF_YEAR) to an extended year in the case
633 * where YEAR, EXTENDED_YEAR are not set.
634 * The Gregorian implementation assumes a yearWoy in gregorian format, according to the current era.
635 * @return the extended year, UCAL_EXTENDED_YEAR
638 virtual int32_t handleGetExtendedYearFromWeekFields(int32_t yearWoy
, int32_t woy
);
642 * Subclasses may override this method to compute several fields
643 * specific to each calendar system. These are:
650 * <li>EXTENDED_YEAR</ul>
652 * <p>The GregorianCalendar implementation implements
653 * a calendar with the specified Julian/Gregorian cutover date.
656 virtual void handleComputeFields(int32_t julianDay
, UErrorCode
&status
);
660 * Compute the julian day number of the given year.
661 * @param isGregorian if true, using Gregorian calendar, otherwise using Julian calendar
662 * @param year the given year.
663 * @param isLeap true if the year is a leap year.
666 static double computeJulianDayOfYear(UBool isGregorian
, int32_t year
,
670 * Validates the values of the set time fields. True if they're all valid.
671 * @return True if the set time fields are all valid.
673 UBool
validateFields(void) const;
676 * Validates the value of the given time field. True if it's valid.
678 UBool
boundsCheck(int32_t value
, UCalendarDateFields field
) const;
681 * Return the pseudo-time-stamp for two fields, given their
682 * individual pseudo-time-stamps. If either of the fields
683 * is unset, then the aggregate is unset. Otherwise, the
684 * aggregate is the later of the two stamps.
685 * @param stamp_a One given field.
686 * @param stamp_b Another given field.
687 * @return the pseudo-time-stamp for two fields
689 int32_t aggregateStamp(int32_t stamp_a
, int32_t stamp_b
);
692 * The point at which the Gregorian calendar rules are used, measured in
693 * milliseconds from the standard epoch. Default is October 15, 1582
694 * (Gregorian) 00:00:00 UTC, that is, October 4, 1582 (Julian) is followed
695 * by October 15, 1582 (Gregorian). This corresponds to Julian day number
696 * 2299161. This is measured from the standard epoch, not in Julian Days.
698 UDate fGregorianCutover
;
701 * Julian day number of the Gregorian cutover
703 int32_t fCutoverJulianDay
;
706 * Midnight, local time (using this Calendar's TimeZone) at or before the
707 * gregorianCutover. This is a pure date value with no time of day or
708 * timezone component.
710 UDate fNormalizedGregorianCutover
;// = gregorianCutover;
713 * The year of the gregorianCutover, with 0 representing
714 * 1 BC, -1 representing 2 BC, etc.
716 int32_t fGregorianCutoverYear
;// = 1582;
719 * The year of the gregorianCutover, with 0 representing
720 * 1 BC, -1 representing 2 BC, etc.
722 int32_t fGregorianCutoverJulianDay
;// = 2299161;
725 * Converts time as milliseconds to Julian date. The Julian date used here is not a
726 * true Julian date, since it is measured from midnight, not noon.
728 * @param millis The given milliseconds.
729 * @return The Julian date number.
731 static double millisToJulianDay(UDate millis
);
734 * Converts Julian date to time as milliseconds. The Julian date used here is not a
735 * true Julian date, since it is measured from midnight, not noon.
737 * @param julian The given Julian date number.
738 * @return Time as milliseconds.
740 static UDate
julianDayToMillis(double julian
);
743 * Used by handleComputeJulianDay() and handleComputeMonthStart().
744 * Temporary field indicating whether the calendar is currently Gregorian as opposed to Julian.
749 * Used by handleComputeJulianDay() and handleComputeMonthStart().
750 * Temporary field indicating that the sense of the gregorian cutover should be inverted
751 * to handle certain calculations on and around the cutover date.
753 UBool fInvertGregorian
;
756 public: // internal implementation
759 * @return TRUE if this calendar has the notion of a default century
762 virtual UBool
haveDefaultCentury() const;
765 * @return the start of the default century
768 virtual UDate
defaultCenturyStart() const;
771 * @return the beginning year of the default century
774 virtual int32_t defaultCenturyStartYear() const;
779 #endif /* #if !UCONFIG_NO_FORMATTING */
781 #endif /* U_SHOW_CPLUSPLUS_API */