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 !UCONFIG_NO_FORMATTING
33 #include "unicode/calendar.h"
37 * \brief C++ API: Concrete class which provides the standard calendar.
40 #if U_SHOW_CPLUSPLUS_API
44 * Concrete class which provides the standard calendar used by most of the world.
46 * The standard (Gregorian) calendar has 2 eras, BC and AD.
48 * This implementation handles a single discontinuity, which corresponds by default to
49 * the date the Gregorian calendar was originally instituted (October 15, 1582). Not all
50 * countries adopted the Gregorian calendar then, so this cutover date may be changed by
53 * Prior to the institution of the Gregorian Calendar, New Year's Day was March 25. To
54 * avoid confusion, this Calendar always uses January 1. A manual adjustment may be made
55 * if desired for dates that are prior to the Gregorian changeover and which fall
56 * between January 1 and March 24.
58 * <p>Values calculated for the <code>WEEK_OF_YEAR</code> field range from 1 to
59 * 53. Week 1 for a year is the first week that contains at least
60 * <code>getMinimalDaysInFirstWeek()</code> days from that year. It thus
61 * depends on the values of <code>getMinimalDaysInFirstWeek()</code>,
62 * <code>getFirstDayOfWeek()</code>, and the day of the week of January 1.
63 * Weeks between week 1 of one year and week 1 of the following year are
64 * numbered sequentially from 2 to 52 or 53 (as needed).
66 * <p>For example, January 1, 1998 was a Thursday. If
67 * <code>getFirstDayOfWeek()</code> is <code>MONDAY</code> and
68 * <code>getMinimalDaysInFirstWeek()</code> is 4 (these are the values
69 * reflecting ISO 8601 and many national standards), then week 1 of 1998 starts
70 * on December 29, 1997, and ends on January 4, 1998. If, however,
71 * <code>getFirstDayOfWeek()</code> is <code>SUNDAY</code>, then week 1 of 1998
72 * starts on January 4, 1998, and ends on January 10, 1998; the first three days
73 * of 1998 then are part of week 53 of 1997.
75 * <p>Example for using GregorianCalendar:
78 * // get the supported ids for GMT-08:00 (Pacific Standard Time)
79 * UErrorCode success = U_ZERO_ERROR;
80 * const StringEnumeration *ids = TimeZone::createEnumeration(-8 * 60 * 60 * 1000);
81 * // if no ids were returned, something is wrong. get out.
82 * if (ids == 0 || ids->count(success) == 0) {
87 * cout << "Current Time" << endl;
89 * // create a Pacific Standard Time time zone
90 * SimpleTimeZone* pdt = new SimpleTimeZone(-8 * 60 * 60 * 1000, ids->unext(NULL, success)));
92 * // set up rules for daylight savings time
93 * pdt->setStartRule(UCAL_MARCH, 1, UCAL_SUNDAY, 2 * 60 * 60 * 1000);
94 * pdt->setEndRule(UCAL_NOVEMBER, 2, UCAL_SUNDAY, 2 * 60 * 60 * 1000);
96 * // create a GregorianCalendar with the Pacific Daylight time zone
97 * // and the current date and time
98 * Calendar* calendar = new GregorianCalendar( pdt, success );
100 * // print out a bunch of interesting things
101 * cout << "ERA: " << calendar->get( UCAL_ERA, success ) << endl;
102 * cout << "YEAR: " << calendar->get( UCAL_YEAR, success ) << endl;
103 * cout << "MONTH: " << calendar->get( UCAL_MONTH, success ) << endl;
104 * cout << "WEEK_OF_YEAR: " << calendar->get( UCAL_WEEK_OF_YEAR, success ) << endl;
105 * cout << "WEEK_OF_MONTH: " << calendar->get( UCAL_WEEK_OF_MONTH, success ) << endl;
106 * cout << "DATE: " << calendar->get( UCAL_DATE, success ) << endl;
107 * cout << "DAY_OF_MONTH: " << calendar->get( UCAL_DAY_OF_MONTH, success ) << endl;
108 * cout << "DAY_OF_YEAR: " << calendar->get( UCAL_DAY_OF_YEAR, success ) << endl;
109 * cout << "DAY_OF_WEEK: " << calendar->get( UCAL_DAY_OF_WEEK, success ) << endl;
110 * cout << "DAY_OF_WEEK_IN_MONTH: " << calendar->get( UCAL_DAY_OF_WEEK_IN_MONTH, success ) << endl;
111 * cout << "AM_PM: " << calendar->get( UCAL_AM_PM, success ) << endl;
112 * cout << "HOUR: " << calendar->get( UCAL_HOUR, success ) << endl;
113 * cout << "HOUR_OF_DAY: " << calendar->get( UCAL_HOUR_OF_DAY, success ) << endl;
114 * cout << "MINUTE: " << calendar->get( UCAL_MINUTE, success ) << endl;
115 * cout << "SECOND: " << calendar->get( UCAL_SECOND, success ) << endl;
116 * cout << "MILLISECOND: " << calendar->get( UCAL_MILLISECOND, success ) << endl;
117 * cout << "ZONE_OFFSET: " << (calendar->get( UCAL_ZONE_OFFSET, success )/(60*60*1000)) << endl;
118 * cout << "DST_OFFSET: " << (calendar->get( UCAL_DST_OFFSET, success )/(60*60*1000)) << endl;
120 * cout << "Current Time, with hour reset to 3" << endl;
121 * calendar->clear(UCAL_HOUR_OF_DAY); // so doesn't override
122 * calendar->set(UCAL_HOUR, 3);
123 * cout << "ERA: " << calendar->get( UCAL_ERA, success ) << endl;
124 * cout << "YEAR: " << calendar->get( UCAL_YEAR, success ) << endl;
125 * cout << "MONTH: " << calendar->get( UCAL_MONTH, success ) << endl;
126 * cout << "WEEK_OF_YEAR: " << calendar->get( UCAL_WEEK_OF_YEAR, success ) << endl;
127 * cout << "WEEK_OF_MONTH: " << calendar->get( UCAL_WEEK_OF_MONTH, success ) << endl;
128 * cout << "DATE: " << calendar->get( UCAL_DATE, success ) << endl;
129 * cout << "DAY_OF_MONTH: " << calendar->get( UCAL_DAY_OF_MONTH, success ) << endl;
130 * cout << "DAY_OF_YEAR: " << calendar->get( UCAL_DAY_OF_YEAR, success ) << endl;
131 * cout << "DAY_OF_WEEK: " << calendar->get( UCAL_DAY_OF_WEEK, success ) << endl;
132 * cout << "DAY_OF_WEEK_IN_MONTH: " << calendar->get( UCAL_DAY_OF_WEEK_IN_MONTH, success ) << endl;
133 * cout << "AM_PM: " << calendar->get( UCAL_AM_PM, success ) << endl;
134 * cout << "HOUR: " << calendar->get( UCAL_HOUR, success ) << endl;
135 * cout << "HOUR_OF_DAY: " << calendar->get( UCAL_HOUR_OF_DAY, success ) << endl;
136 * cout << "MINUTE: " << calendar->get( UCAL_MINUTE, success ) << endl;
137 * cout << "SECOND: " << calendar->get( UCAL_SECOND, success ) << endl;
138 * cout << "MILLISECOND: " << calendar->get( UCAL_MILLISECOND, success ) << endl;
139 * cout << "ZONE_OFFSET: " << (calendar->get( UCAL_ZONE_OFFSET, success )/(60*60*1000)) << endl; // in hours
140 * cout << "DST_OFFSET: " << (calendar->get( UCAL_DST_OFFSET, success )/(60*60*1000)) << endl; // in hours
142 * if (U_FAILURE(success)) {
143 * cout << "An error occured. success=" << u_errorName(success) << endl;
147 * delete calendar; // also deletes pdt
152 class U_I18N_API GregorianCalendar
: public Calendar
{
156 * Useful constants for GregorianCalendar and TimeZone.
165 * Constructs a default GregorianCalendar using the current time in the default time
166 * zone with the default locale.
168 * @param success Indicates the status of GregorianCalendar object construction.
169 * Returns U_ZERO_ERROR if constructed successfully.
172 GregorianCalendar(UErrorCode
& success
);
175 * Constructs a GregorianCalendar based on the current time in the given time zone
176 * with the default locale. Clients are no longer responsible for deleting the given
177 * time zone object after it's adopted.
179 * @param zoneToAdopt The given timezone.
180 * @param success Indicates the status of GregorianCalendar object construction.
181 * Returns U_ZERO_ERROR if constructed successfully.
184 GregorianCalendar(TimeZone
* zoneToAdopt
, UErrorCode
& success
);
187 * Constructs a GregorianCalendar based on the current time in the given time zone
188 * with the default locale.
190 * @param zone The given timezone.
191 * @param success Indicates the status of GregorianCalendar object construction.
192 * Returns U_ZERO_ERROR if constructed successfully.
195 GregorianCalendar(const TimeZone
& zone
, UErrorCode
& success
);
198 * Constructs a GregorianCalendar based on the current time in the default time zone
199 * with the given locale.
201 * @param aLocale The given locale.
202 * @param success Indicates the status of GregorianCalendar object construction.
203 * Returns U_ZERO_ERROR if constructed successfully.
206 GregorianCalendar(const Locale
& aLocale
, UErrorCode
& success
);
209 * Constructs a GregorianCalendar based on the current time in the given time zone
210 * with the given locale. Clients are no longer responsible for deleting the given
211 * time zone object after it's adopted.
213 * @param zoneToAdopt The given timezone.
214 * @param aLocale The given locale.
215 * @param success Indicates the status of GregorianCalendar object construction.
216 * Returns U_ZERO_ERROR if constructed successfully.
219 GregorianCalendar(TimeZone
* zoneToAdopt
, const Locale
& aLocale
, UErrorCode
& success
);
222 * Constructs a GregorianCalendar based on the current time in the given time zone
223 * with the given locale.
225 * @param zone The given timezone.
226 * @param aLocale The given locale.
227 * @param success Indicates the status of GregorianCalendar object construction.
228 * Returns U_ZERO_ERROR if constructed successfully.
231 GregorianCalendar(const TimeZone
& zone
, const Locale
& aLocale
, UErrorCode
& success
);
234 * Constructs a GregorianCalendar with the given AD date set in the default time
235 * zone with the default locale.
237 * @param year The value used to set the YEAR time field in the calendar.
238 * @param month The value used to set the MONTH time field in the calendar. Month
239 * value is 0-based. e.g., 0 for January.
240 * @param date The value used to set the DATE time field in the calendar.
241 * @param success Indicates the status of GregorianCalendar object construction.
242 * Returns U_ZERO_ERROR if constructed successfully.
245 GregorianCalendar(int32_t year
, int32_t month
, int32_t date
, UErrorCode
& success
);
248 * Constructs a GregorianCalendar with the given AD date and time set for the
249 * default time zone with the default locale.
251 * @param year The value used to set the YEAR time field in the calendar.
252 * @param month The value used to set the MONTH time field in the calendar. Month
253 * value is 0-based. e.g., 0 for January.
254 * @param date The value used to set the DATE time field in the calendar.
255 * @param hour The value used to set the HOUR_OF_DAY time field in the calendar.
256 * @param minute The value used to set the MINUTE time field in the calendar.
257 * @param success Indicates the status of GregorianCalendar object construction.
258 * Returns U_ZERO_ERROR if constructed successfully.
261 GregorianCalendar(int32_t year
, int32_t month
, int32_t date
, int32_t hour
, int32_t minute
, UErrorCode
& success
);
264 * Constructs a GregorianCalendar with the given AD date and time set for the
265 * default time zone with the default locale.
267 * @param year The value used to set the YEAR time field in the calendar.
268 * @param month The value used to set the MONTH time field in the calendar. Month
269 * value is 0-based. e.g., 0 for January.
270 * @param date The value used to set the DATE time field in the calendar.
271 * @param hour The value used to set the HOUR_OF_DAY time field in the calendar.
272 * @param minute The value used to set the MINUTE time field in the calendar.
273 * @param second The value used to set the SECOND time field in the calendar.
274 * @param success Indicates the status of GregorianCalendar object construction.
275 * Returns U_ZERO_ERROR if constructed successfully.
278 GregorianCalendar(int32_t year
, int32_t month
, int32_t date
, int32_t hour
, int32_t minute
, int32_t second
, UErrorCode
& success
);
284 virtual ~GregorianCalendar();
288 * @param source the object to be copied.
291 GregorianCalendar(const GregorianCalendar
& source
);
294 * Default assignment operator
295 * @param right the object to be copied.
298 GregorianCalendar
& operator=(const GregorianCalendar
& right
);
301 * Create and return a polymorphic copy of this calendar.
302 * @return return a polymorphic copy of this calendar.
305 virtual Calendar
* clone(void) const;
308 * Sets the GregorianCalendar change date. This is the point when the switch from
309 * Julian dates to Gregorian dates occurred. Default is 00:00:00 local time, October
310 * 15, 1582. Previous to this time and date will be Julian dates.
312 * @param date The given Gregorian cutover date.
313 * @param success Output param set to success/failure code on exit.
316 void setGregorianChange(UDate date
, UErrorCode
& success
);
319 * Gets the Gregorian Calendar change date. This is the point when the switch from
320 * Julian dates to Gregorian dates occurred. Default is 00:00:00 local time, October
321 * 15, 1582. Previous to this time and date will be Julian dates.
323 * @return The Gregorian cutover time for this calendar.
326 UDate
getGregorianChange(void) const;
329 * Return true if the given year is a leap year. Determination of whether a year is
330 * a leap year is actually very complicated. We do something crude and mostly
331 * correct here, but for a real determination you need a lot of contextual
332 * information. For example, in Sweden, the change from Julian to Gregorian happened
333 * in a complex way resulting in missed leap years and double leap years between
334 * 1700 and 1753. Another example is that after the start of the Julian calendar in
335 * 45 B.C., the leap years did not regularize until 8 A.D. This method ignores these
336 * quirks, and pays attention only to the Julian onset date and the Gregorian
337 * cutover (which can be changed).
339 * @param year The given year.
340 * @return True if the given year is a leap year; false otherwise.
343 UBool
isLeapYear(int32_t year
) const;
346 * Returns TRUE if the given Calendar object is equivalent to this
347 * one. Calendar override.
349 * @param other the Calendar to be compared with this Calendar
352 virtual UBool
isEquivalentTo(const Calendar
& other
) const;
355 * (Overrides Calendar) Rolls up or down by the given amount in the specified field.
356 * For more information, see the documentation for Calendar::roll().
358 * @param field The time field.
359 * @param amount Indicates amount to roll.
360 * @param status Output param set to success/failure code on exit. If any value
361 * previously set in the time field is invalid, this will be set to
363 * @deprecated ICU 2.6. Use roll(UCalendarDateFields field, int32_t amount, UErrorCode& status) instead.
365 virtual void roll(EDateFields field
, int32_t amount
, UErrorCode
& status
);
368 * (Overrides Calendar) Rolls up or down by the given amount in the specified field.
369 * For more information, see the documentation for Calendar::roll().
371 * @param field The time field.
372 * @param amount Indicates amount to roll.
373 * @param status Output param set to success/failure code on exit. If any value
374 * previously set in the time field is invalid, this will be set to
378 virtual void roll(UCalendarDateFields field
, int32_t amount
, UErrorCode
& status
);
380 #ifndef U_HIDE_DEPRECATED_API
382 * Return the minimum value that this field could have, given the current date.
383 * For the Gregorian calendar, this is the same as getMinimum() and getGreatestMinimum().
384 * @param field the time field.
385 * @return the minimum value that this field could have, given the current date.
386 * @deprecated ICU 2.6. Use getActualMinimum(UCalendarDateFields field) instead.
388 int32_t getActualMinimum(EDateFields field
) const;
391 * Return the minimum value that this field could have, given the current date.
392 * For the Gregorian calendar, this is the same as getMinimum() and getGreatestMinimum().
393 * @param field the time field.
395 * @return the minimum value that this field could have, given the current date.
396 * @deprecated ICU 2.6. Use getActualMinimum(UCalendarDateFields field) instead. (Added to ICU 3.0 for signature consistency)
398 int32_t getActualMinimum(EDateFields field
, UErrorCode
& status
) const;
399 #endif /* U_HIDE_DEPRECATED_API */
402 * Return the minimum value that this field could have, given the current date.
403 * For the Gregorian calendar, this is the same as getMinimum() and getGreatestMinimum().
404 * @param field the time field.
405 * @param status error result.
406 * @return the minimum value that this field could have, given the current date.
409 int32_t getActualMinimum(UCalendarDateFields field
, UErrorCode
&status
) const;
411 #ifndef U_HIDE_DEPRECATED_API
413 * Return the maximum value that this field could have, given the current date.
414 * For example, with the date "Feb 3, 1997" and the DAY_OF_MONTH field, the actual
415 * maximum would be 28; for "Feb 3, 1996" it s 29. Similarly for a Hebrew calendar,
416 * for some years the actual maximum for MONTH is 12, and for others 13.
417 * @param field the time field.
418 * @return the maximum value that this field could have, given the current date.
419 * @deprecated ICU 2.6. Use getActualMaximum(UCalendarDateFields field) instead.
421 int32_t getActualMaximum(EDateFields field
) const;
422 #endif /* U_HIDE_DEPRECATED_API */
425 * Return the maximum value that this field could have, given the current date.
426 * For example, with the date "Feb 3, 1997" and the DAY_OF_MONTH field, the actual
427 * maximum would be 28; for "Feb 3, 1996" it s 29. Similarly for a Hebrew calendar,
428 * for some years the actual maximum for MONTH is 12, and for others 13.
429 * @param field the time field.
430 * @param status returns any errors that may result from this function call.
431 * @return the maximum value that this field could have, given the current date.
434 virtual int32_t getActualMaximum(UCalendarDateFields field
, UErrorCode
& status
) const;
437 * (Overrides Calendar) Return true if the current date for this Calendar is in
438 * Daylight Savings Time. Recognizes DST_OFFSET, if it is set.
440 * @param status Fill-in parameter which receives the status of this operation.
441 * @return True if the current date for this Calendar is in Daylight Savings Time,
445 virtual UBool
inDaylightTime(UErrorCode
& status
) const;
450 * Override Calendar Returns a unique class ID POLYMORPHICALLY. Pure virtual
451 * override. This method is to implement a simple version of RTTI, since not all C++
452 * compilers support genuine RTTI. Polymorphic operator==() and clone() methods call
455 * @return The class ID for this object. All objects of a given class have the
456 * same class ID. Objects of other classes have different class IDs.
459 virtual UClassID
getDynamicClassID(void) const;
462 * Return the class ID for this class. This is useful only for comparing to a return
463 * value from getDynamicClassID(). For example:
465 * Base* polymorphic_pointer = createPolymorphicObject();
466 * if (polymorphic_pointer->getDynamicClassID() ==
467 * Derived::getStaticClassID()) ...
469 * @return The class ID for all objects of this class.
472 static UClassID U_EXPORT2
getStaticClassID(void);
475 * Returns the calendar type name string for this Calendar object.
476 * The returned string is the legacy ICU calendar attribute value,
477 * for example, "gregorian" or "japanese".
479 * For more details see the Calendar::getType() documentation.
481 * @return legacy calendar type name string
484 virtual const char * getType() const;
487 GregorianCalendar(); // default constructor not implemented
491 * Return the ERA. We need a special method for this because the
492 * default ERA is AD, but a zero (unset) ERA is BC.
496 virtual int32_t internalGetEra() const;
499 * Return the Julian day number of day before the first day of the
500 * given month in the given extended year. Subclasses should override
501 * this method to implement their calendar system.
502 * @param eyear the extended year
503 * @param month the zero-based month, or 0 if useMonth is false
504 * @param useMonth if false, compute the day before the first day of
505 * the given year, otherwise, compute the day before the first day of
507 * @return the Julian day number of the day before the first
508 * day of the given month and year
511 virtual int32_t handleComputeMonthStart(int32_t eyear
, int32_t month
,
512 UBool useMonth
) const;
515 * Subclasses may override this. This method calls
516 * handleGetMonthLength() to obtain the calendar-specific month
518 * @param bestField which field to use to calculate the date
519 * @return julian day specified by calendar fields.
522 virtual int32_t handleComputeJulianDay(UCalendarDateFields bestField
) ;
525 * Return the number of days in the given month of the given extended
526 * year of this calendar system. Subclasses should override this
527 * method if they can provide a more correct or more efficient
528 * implementation than the default implementation in Calendar.
531 virtual int32_t handleGetMonthLength(int32_t extendedYear
, int32_t month
) const;
534 * Return the number of days in the given extended year of this
535 * calendar system. Subclasses should override this method if they can
536 * provide a more correct or more efficient implementation than the
537 * default implementation in Calendar.
540 virtual int32_t handleGetYearLength(int32_t eyear
) const;
543 * return the length of the given month.
544 * @param month the given month.
545 * @return the length of the given month.
548 virtual int32_t monthLength(int32_t month
) const;
551 * return the length of the month according to the given year.
552 * @param month the given month.
553 * @param year the given year.
554 * @return the length of the month
557 virtual int32_t monthLength(int32_t month
, int32_t year
) const;
559 #ifndef U_HIDE_INTERNAL_API
561 * return the length of the given year.
562 * @param year the given year.
563 * @return the length of the given year.
566 int32_t yearLength(int32_t year
) const;
569 * return the length of the year field.
570 * @return the length of the year field
573 int32_t yearLength(void) const;
576 * After adjustments such as add(MONTH), add(YEAR), we don't want the
577 * month to jump around. E.g., we don't want Jan 31 + 1 month to go to Mar
578 * 3, we want it to go to Feb 28. Adjustments which might run into this
579 * problem call this method to retain the proper month.
582 void pinDayOfMonth(void);
583 #endif /* U_HIDE_INTERNAL_API */
586 * Return the day number with respect to the epoch. January 1, 1970 (Gregorian)
588 * @param status Fill-in parameter which receives the status of this operation.
589 * @return the day number with respect to the epoch.
592 virtual UDate
getEpochDay(UErrorCode
& status
);
595 * Subclass API for defining limits of different types.
596 * Subclasses must implement this method to return limits for the
604 * UCAL_DATE (DAY_OF_MONTH on Java)
606 * UCAL_DAY_OF_WEEK_IN_MONTH
608 * UCAL_EXTENDED_YEAR</pre>
610 * @param field one of the above field numbers
611 * @param limitType one of <code>MINIMUM</code>, <code>GREATEST_MINIMUM</code>,
612 * <code>LEAST_MAXIMUM</code>, or <code>MAXIMUM</code>
615 virtual int32_t handleGetLimit(UCalendarDateFields field
, ELimitType limitType
) const;
618 * Return the extended year defined by the current fields. This will
619 * use the UCAL_EXTENDED_YEAR field or the UCAL_YEAR and supra-year fields (such
620 * as UCAL_ERA) specific to the calendar system, depending on which set of
622 * @return the extended year
625 virtual int32_t handleGetExtendedYear();
628 * Subclasses may override this to convert from week fields
629 * (YEAR_WOY and WEEK_OF_YEAR) to an extended year in the case
630 * where YEAR, EXTENDED_YEAR are not set.
631 * The Gregorian implementation assumes a yearWoy in gregorian format, according to the current era.
632 * @return the extended year, UCAL_EXTENDED_YEAR
635 virtual int32_t handleGetExtendedYearFromWeekFields(int32_t yearWoy
, int32_t woy
);
639 * Subclasses may override this method to compute several fields
640 * specific to each calendar system. These are:
647 * <li>EXTENDED_YEAR</ul>
649 * <p>The GregorianCalendar implementation implements
650 * a calendar with the specified Julian/Gregorian cutover date.
653 virtual void handleComputeFields(int32_t julianDay
, UErrorCode
&status
);
657 * Compute the julian day number of the given year.
658 * @param isGregorian if true, using Gregorian calendar, otherwise using Julian calendar
659 * @param year the given year.
660 * @param isLeap true if the year is a leap year.
663 static double computeJulianDayOfYear(UBool isGregorian
, int32_t year
,
667 * Validates the values of the set time fields. True if they're all valid.
668 * @return True if the set time fields are all valid.
670 UBool
validateFields(void) const;
673 * Validates the value of the given time field. True if it's valid.
675 UBool
boundsCheck(int32_t value
, UCalendarDateFields field
) const;
678 * Return the pseudo-time-stamp for two fields, given their
679 * individual pseudo-time-stamps. If either of the fields
680 * is unset, then the aggregate is unset. Otherwise, the
681 * aggregate is the later of the two stamps.
682 * @param stamp_a One given field.
683 * @param stamp_b Another given field.
684 * @return the pseudo-time-stamp for two fields
686 int32_t aggregateStamp(int32_t stamp_a
, int32_t stamp_b
);
689 * The point at which the Gregorian calendar rules are used, measured in
690 * milliseconds from the standard epoch. Default is October 15, 1582
691 * (Gregorian) 00:00:00 UTC, that is, October 4, 1582 (Julian) is followed
692 * by October 15, 1582 (Gregorian). This corresponds to Julian day number
693 * 2299161. This is measured from the standard epoch, not in Julian Days.
695 UDate fGregorianCutover
;
698 * Julian day number of the Gregorian cutover
700 int32_t fCutoverJulianDay
;
703 * Midnight, local time (using this Calendar's TimeZone) at or before the
704 * gregorianCutover. This is a pure date value with no time of day or
705 * timezone component.
707 UDate fNormalizedGregorianCutover
;// = gregorianCutover;
710 * The year of the gregorianCutover, with 0 representing
711 * 1 BC, -1 representing 2 BC, etc.
713 int32_t fGregorianCutoverYear
;// = 1582;
716 * The year of the gregorianCutover, with 0 representing
717 * 1 BC, -1 representing 2 BC, etc.
719 int32_t fGregorianCutoverJulianDay
;// = 2299161;
722 * Converts time as milliseconds to Julian date. The Julian date used here is not a
723 * true Julian date, since it is measured from midnight, not noon.
725 * @param millis The given milliseconds.
726 * @return The Julian date number.
728 static double millisToJulianDay(UDate millis
);
731 * Converts Julian date to time as milliseconds. The Julian date used here is not a
732 * true Julian date, since it is measured from midnight, not noon.
734 * @param julian The given Julian date number.
735 * @return Time as milliseconds.
737 static UDate
julianDayToMillis(double julian
);
740 * Used by handleComputeJulianDay() and handleComputeMonthStart().
741 * Temporary field indicating whether the calendar is currently Gregorian as opposed to Julian.
746 * Used by handleComputeJulianDay() and handleComputeMonthStart().
747 * Temporary field indicating that the sense of the gregorian cutover should be inverted
748 * to handle certain calculations on and around the cutover date.
750 UBool fInvertGregorian
;
753 public: // internal implementation
756 * @return TRUE if this calendar has the notion of a default century
759 virtual UBool
haveDefaultCentury() const;
762 * @return the start of the default century
765 virtual UDate
defaultCenturyStart() const;
768 * @return the beginning year of the default century
771 virtual int32_t defaultCenturyStartYear() const;
775 #endif // U_SHOW_CPLUSPLUS_API
777 #endif /* #if !UCONFIG_NO_FORMATTING */