com.ibm.icu.util
Class Calendar

java.lang.Object
  extended by com.ibm.icu.util.Calendar
All Implemented Interfaces:
Serializable, Cloneable, Comparable
Direct Known Subclasses:
ChineseCalendar, CopticCalendar, EthiopicCalendar, GregorianCalendar, HebrewCalendar, IndianCalendar, IslamicCalendar

public abstract class Calendar
extends Object
implements Serializable, Cloneable, Comparable

Calendar is an abstract base class for converting between a Date object and a set of integer fields such as YEAR, MONTH, DAY, HOUR, and so on. (A Date object represents a specific instant in time with millisecond precision. See Date for information about the Date class.)

Note: This class is similar, but not identical, to the class java.util.Calendar. Changes are detailed below.

Subclasses of Calendar interpret a Date according to the rules of a specific calendar system. ICU4J contains several subclasses implementing different international calendar systems.

Like other locale-sensitive classes, Calendar provides a class method, getInstance, for getting a generally useful object of this type. Calendar's getInstance method returns a calendar of a type appropriate to the locale, whose time fields have been initialized with the current date and time:

Calendar rightNow = Calendar.getInstance()

When a ULocale is used by getInstance, its 'calendar' tag and value are retrieved if present. If a recognized value is supplied, a calendar is provided and configured as appropriate. Currently recognized tags are "buddhist", "chinese", "coptic", "ethiopic", "gregorian", "hebrew", "islamic", "islamic-civil", "japanese", and "roc". For example:

Calendar cal = Calendar.getInstance(new ULocale("en_US@calendar=japanese"));
will return an instance of JapaneseCalendar (using en_US conventions for minimum days in first week, start day of week, et cetera).

A Calendar object can produce all the time field values needed to implement the date-time formatting for a particular language and calendar style (for example, Japanese-Gregorian, Japanese-Traditional). Calendar defines the range of values returned by certain fields, as well as their meaning. For example, the first month of the year has value MONTH == JANUARY for all calendars. Other values are defined by the concrete subclass, such as ERA and YEAR. See individual field documentation and subclass documentation for details.

When a Calendar is lenient, it accepts a wider range of field values than it produces. For example, a lenient GregorianCalendar interprets MONTH == JANUARY, DAY_OF_MONTH == 32 as February 1. A non-lenient GregorianCalendar throws an exception when given out-of-range field settings. When calendars recompute field values for return by get(), they normalize them. For example, a GregorianCalendar always produces DAY_OF_MONTH values between 1 and the length of the month.

Calendar defines a locale-specific seven day week using two parameters: the first day of the week and the minimal days in first week (from 1 to 7). These numbers are taken from the locale resource data when a Calendar is constructed. They may also be specified explicitly through the API.

When setting or getting the WEEK_OF_MONTH or WEEK_OF_YEAR fields, Calendar must determine the first week of the month or year as a reference point. The first week of a month or year is defined as the earliest seven day period beginning on getFirstDayOfWeek() and containing at least getMinimalDaysInFirstWeek() days of that month or year. Weeks numbered ..., -1, 0 precede the first week; weeks numbered 2, 3,... follow it. Note that the normalized numbering returned by get() may be different. For example, a specific Calendar subclass may designate the week before week 1 of a year as week n of the previous year.

When computing a Date from time fields, two special circumstances may arise: there may be insufficient information to compute the Date (such as only year and month but no day in the month), or there may be inconsistent information (such as "Tuesday, July 15, 1996" -- July 15, 1996 is actually a Monday).

Insufficient information. The calendar will use default information to specify the missing fields. This may vary by calendar; for the Gregorian calendar, the default for a field is the same as that of the start of the epoch: i.e., YEAR = 1970, MONTH = JANUARY, DATE = 1, etc.

Inconsistent information. If fields conflict, the calendar will give preference to fields set more recently. For example, when determining the day, the calendar will look for one of the following combinations of fields. The most recent combination, as determined by the most recently set single field, will be used.

 MONTH + DAY_OF_MONTH
 MONTH + WEEK_OF_MONTH + DAY_OF_WEEK
 MONTH + DAY_OF_WEEK_IN_MONTH + DAY_OF_WEEK
 DAY_OF_YEAR
 DAY_OF_WEEK + WEEK_OF_YEAR
For the time of day:
 HOUR_OF_DAY
 AM_PM + HOUR

Note: for some non-Gregorian calendars, different fields may be necessary for complete disambiguation. For example, a full specification of the historial Arabic astronomical calendar requires year, month, day-of-month and day-of-week in some cases.

Note: There are certain possible ambiguities in interpretation of certain singular times, which are resolved in the following ways:

  1. 24:00:00 "belongs" to the following day. That is, 23:59 on Dec 31, 1969 < 24:00 on Jan 1, 1970 < 24:01:00 on Jan 1, 1970
  2. Although historically not precise, midnight also belongs to "am", and noon belongs to "pm", so on the same day, 12:00 am (midnight) < 12:01 am, and 12:00 pm (noon) < 12:01 pm

The date or time format strings are not part of the definition of a calendar, as those must be modifiable or overridable by the user at runtime. Use DateFormat to format dates.

Field manipulation methods

Calendar fields can be changed using three methods: set(), add(), and roll().

set(f, value) changes field f to value. In addition, it sets an internal member variable to indicate that field f has been changed. Although field f is changed immediately, the calendar's milliseconds is not recomputed until the next call to get(), getTime(), or getTimeInMillis() is made. Thus, multiple calls to set() do not trigger multiple, unnecessary computations. As a result of changing a field using set(), other fields may also change, depending on the field, the field value, and the calendar system. In addition, get(f) will not necessarily return value after the fields have been recomputed. The specifics are determined by the concrete calendar class.

Example: Consider a GregorianCalendar originally set to August 31, 1999. Calling set(Calendar.MONTH, Calendar.SEPTEMBER) sets the calendar to September 31, 1999. This is a temporary internal representation that resolves to October 1, 1999 if getTime()is then called. However, a call to set(Calendar.DAY_OF_MONTH, 30) before the call to getTime() sets the calendar to September 30, 1999, since no recomputation occurs after set() itself.

add(f, delta) adds delta to field f. This is equivalent to calling set(f, get(f) + delta) with two adjustments:

Add rule 1. The value of field f after the call minus the value of field f before the call is delta, modulo any overflow that has occurred in field f. Overflow occurs when a field value exceeds its range and, as a result, the next larger field is incremented or decremented and the field value is adjusted back into its range.

Add rule 2. If a smaller field is expected to be invariant, but   it is impossible for it to be equal to its prior value because of changes in its minimum or maximum after field f is changed, then its value is adjusted to be as close as possible to its expected value. A smaller field represents a smaller unit of time. HOUR is a smaller field than DAY_OF_MONTH. No adjustment is made to smaller fields that are not expected to be invariant. The calendar system determines what fields are expected to be invariant.

In addition, unlike set(), add() forces an immediate recomputation of the calendar's milliseconds and all fields.

Example: Consider a GregorianCalendar originally set to August 31, 1999. Calling add(Calendar.MONTH, 13) sets the calendar to September 30, 2000. Add rule 1 sets the MONTH field to September, since adding 13 months to August gives September of the next year. Since DAY_OF_MONTH cannot be 31 in September in a GregorianCalendar, add rule 2 sets the DAY_OF_MONTH to 30, the closest possible value. Although it is a smaller field, DAY_OF_WEEK is not adjusted by rule 2, since it is expected to change when the month changes in a GregorianCalendar.

roll(f, delta) adds delta to field f without changing larger fields. This is equivalent to calling add(f, delta) with the following adjustment:

Roll rule. Larger fields are unchanged after the call. A larger field represents a larger unit of time. DAY_OF_MONTH is a larger field than HOUR.

Example: Consider a GregorianCalendar originally set to August 31, 1999. Calling roll(Calendar.MONTH, 8) sets the calendar to April 30, 1999. Add rule 1 sets the MONTH field to April. Using a GregorianCalendar, the DAY_OF_MONTH cannot be 31 in the month April. Add rule 2 sets it to the closest possible value, 30. Finally, the roll rule maintains the YEAR field value of 1999.

Example: Consider a GregorianCalendar originally set to Sunday June 6, 1999. Calling roll(Calendar.WEEK_OF_MONTH, -1) sets the calendar to Tuesday June 1, 1999, whereas calling add(Calendar.WEEK_OF_MONTH, -1) sets the calendar to Sunday May 30, 1999. This is because the roll rule imposes an additional constraint: The MONTH must not change when the WEEK_OF_MONTH is rolled. Taken together with add rule 1, the resultant date must be between Tuesday June 1 and Saturday June 5. According to add rule 2, the DAY_OF_WEEK, an invariant when changing the WEEK_OF_MONTH, is set to Tuesday, the closest possible value to Sunday (where Sunday is the first day of the week).

Usage model. To motivate the behavior of add() and roll(), consider a user interface component with increment and decrement buttons for the month, day, and year, and an underlying GregorianCalendar. If the interface reads January 31, 1999 and the user presses the month increment button, what should it read? If the underlying implementation uses set(), it might read March 3, 1999. A better result would be February 28, 1999. Furthermore, if the user presses the month increment button again, it should read March 31, 1999, not March 28, 1999. By saving the original date and using either add() or roll(), depending on whether larger fields should be affected, the user interface can behave as most users will intuitively expect.

Note: You should always use roll and add rather than attempting to perform arithmetic operations directly on the fields of a Calendar. It is quite possible for Calendar subclasses to have fields with non-linear behavior, for example missing months or days during non-leap years. The subclasses' add and roll methods will take this into account, while simple arithmetic manipulations may give invalid results.

Calendar Architecture in ICU4J

Recently the implementation of Calendar has changed significantly in order to better support subclassing. The original Calendar class was designed to support subclassing, but it had only one implemented subclass, GregorianCalendar. With the implementation of several new calendar subclasses, including the BuddhistCalendar, ChineseCalendar, HebrewCalendar, IslamicCalendar, and JapaneseCalendar, the subclassing API has been reworked thoroughly. This section details the new subclassing API and other ways in which com.ibm.icu.util.Calendar differs from java.util.Calendar.

Changes

Overview of changes between the classic Calendar architecture and the new architecture.

Subclass API

The original Calendar API was based on the experience of implementing a only a single subclass, GregorianCalendar. As a result, all of the subclassing kinks had not been worked out. The new subclassing API has been refined based on several implemented subclasses. This includes methods that must be overridden and methods for subclasses to call. Subclasses no longer have direct access to fields and stamp. Instead, they have new API to access these. Subclasses are able to allocate the fields array through a protected framework method; this allows subclasses to specify additional fields.

More functionality has been moved into the base class. The base class now contains much of the computational machinery to support the Gregorian calendar. This is based on two things: (1) Many calendars are based on the Gregorian calendar (such as the Buddhist and Japanese imperial calendars). (2) All calendars require basic Gregorian support in order to handle timezone computations.

Common computations have been moved into Calendar. Subclasses no longer compute the week related fields and the time related fields. These are commonly handled for all calendars by the base class.

Subclass computation of time => fields

The ERA, YEAR, EXTENDED_YEAR, MONTH, DAY_OF_MONTH, and DAY_OF_YEAR fields are computed by the subclass, based on the Julian day. All other fields are computed by Calendar.

Subclass computation of fields => time

The interpretation of most field values is handled entirely by Calendar. Calendar determines which fields are set, which are not, which are set more recently, and so on. In addition, Calendar handles the computation of the time from the time fields and handles the week-related fields. The only thing the subclass must do is determine the extended year, based on the year fields, and then, given an extended year and a month, it must return a Julian day number.

Other methods

Normalized behavior

The behavior of certain fields has been made consistent across all calendar systems and implemented in Calendar.

Supported range

The allowable range of Calendar has been narrowed. GregorianCalendar used to attempt to support the range of dates with millisecond values from Long.MIN_VALUE to Long.MAX_VALUE. This introduced awkward constructions (hacks) which slowed down performance. It also introduced non-uniform behavior at the boundaries. The new Calendar protocol specifies the maximum range of supportable dates as those having Julian day numbers of -0x7F000000 to +0x7F000000. This corresponds to years from ~5,000,000 BCE to ~5,000,000 CE. Programmers should use the constants MIN_DATE (or MIN_MILLIS or MIN_JULIAN) and MAX_DATE (or MAX_MILLIS or MAX_JULIAN) in Calendar to specify an extremely early or extremely late date.

General notes

Author:
Mark Davis, David Goldsmith, Chen-Lieh Huang, Alan Liu, Laura Werner
See Also:
Date, GregorianCalendar, TimeZone, DateFormat, Serialized Form
Status:
Stable ICU 2.0.

Nested Class Summary
static class Calendar.FormatConfiguration
          Deprecated. This API is ICU internal only.
 
Field Summary
static int AM
          Value of the AM_PM field indicating the period of the day from midnight to just before noon.
static int AM_PM
          Field number for get and set indicating whether the HOUR is before or after noon.
static int APRIL
          Value of the MONTH field indicating the fourth month of the year.
static int AUGUST
          Value of the MONTH field indicating the eighth month of the year.
protected static int BASE_FIELD_COUNT
          The number of fields defined by this class.
static int DATE
          Field number for get and set indicating the day of the month.
static int DAY_OF_MONTH
          Field number for get and set indicating the day of the month.
static int DAY_OF_WEEK
          Field number for get and set indicating the day of the week.
static int DAY_OF_WEEK_IN_MONTH
          Field number for get and set indicating the ordinal number of the day of the week within the current month.
static int DAY_OF_YEAR
          Field number for get and set indicating the day number within the current year.
static int DECEMBER
          Value of the MONTH field indicating the twelfth month of the year.
static int DOW_LOCAL
          Field number for get() and set() indicating the localized day of week.
static int DST_OFFSET
          Field number for get and set indicating the daylight savings offset in milliseconds.
protected static int EPOCH_JULIAN_DAY
          The Julian day of the epoch, that is, January 1, 1970 on the Gregorian calendar.
static int ERA
          Field number for get and set indicating the era, e.g., AD or BC in the Julian calendar.
static int EXTENDED_YEAR
          Field number for get() and set() indicating the extended year.
static int FEBRUARY
          Value of the MONTH field indicating the second month of the year.
static int FRIDAY
          Value of the DAY_OF_WEEK field indicating Friday.
protected static int GREATEST_MINIMUM
          Limit type for getLimit() and handleGetLimit() indicating the greatest minimum value that a field can take.
static int HOUR
          Field number for get and set indicating the hour of the morning or afternoon.
static int HOUR_OF_DAY
          Field number for get and set indicating the hour of the day.
protected static int INTERNALLY_SET
          Value of the time stamp stamp[] indicating that a field has been set via computations from the time or from other fields.
protected static int JAN_1_1_JULIAN_DAY
          The Julian day of the Gregorian epoch, that is, January 1, 1 on the Gregorian calendar.
static int JANUARY
          Value of the MONTH field indicating the first month of the year.
static int JULIAN_DAY
          Field number for get() and set() indicating the modified Julian day number.
static int JULY
          Value of the MONTH field indicating the seventh month of the year.
static int JUNE
          Value of the MONTH field indicating the sixth month of the year.
protected static int LEAST_MAXIMUM
          Limit type for getLimit() and handleGetLimit() indicating the least maximum value that a field can take.
static int MARCH
          Value of the MONTH field indicating the third month of the year.
protected static Date MAX_DATE
          The maximum supported Date.
protected static int MAX_FIELD_COUNT
          The maximum number of fields possible.
protected static int MAX_JULIAN
          The maximum supported Julian day.
protected static long MAX_MILLIS
          The maximum supported epoch milliseconds.
protected static int MAXIMUM
          Limit type for getLimit() and handleGetLimit() indicating the maximum value that a field can take (greatest maximum).
static int MAY
          Value of the MONTH field indicating the fifth month of the year.
static int MILLISECOND
          Field number for get and set indicating the millisecond within the second.
static int MILLISECONDS_IN_DAY
          Field number for get() and set() indicating the milliseconds in the day.
protected static Date MIN_DATE
          The minimum supported Date.
protected static int MIN_JULIAN
          The minimum supported Julian day.
protected static long MIN_MILLIS
          The minimum supported epoch milliseconds.
protected static int MINIMUM
          Limit type for getLimit() and handleGetLimit() indicating the minimum value that a field can take (least minimum).
protected static int MINIMUM_USER_STAMP
          If the time stamp stamp[] has a value greater than or equal to MINIMUM_USER_SET then it has been set by the user via a call to set().
static int MINUTE
          Field number for get and set indicating the minute within the hour.
static int MONDAY
          Value of the DAY_OF_WEEK field indicating Monday.
static int MONTH
          Field number for get and set indicating the month.
static int NOVEMBER
          Value of the MONTH field indicating the eleventh month of the year.
static int OCTOBER
          Value of the MONTH field indicating the tenth month of the year.
protected static long ONE_DAY
          The number of milliseconds in one day.
protected static int ONE_HOUR
          The number of milliseconds in one hour.
protected static int ONE_MINUTE
          The number of milliseconds in one minute.
protected static int ONE_SECOND
          The number of milliseconds in one second.
protected static long ONE_WEEK
          The number of milliseconds in one week.
static int PM
          Value of the AM_PM field indicating the period of the day from noon to just before midnight.
protected static int RESOLVE_REMAP
          Value to OR against resolve table field values for remapping.
static int SATURDAY
          Value of the DAY_OF_WEEK field indicating Saturday.
static int SECOND
          Field number for get and set indicating the second within the minute.
static int SEPTEMBER
          Value of the MONTH field indicating the ninth month of the year.
static int SUNDAY
          Value of the DAY_OF_WEEK field indicating Sunday.
static int THURSDAY
          Value of the DAY_OF_WEEK field indicating Thursday.
static int TUESDAY
          Value of the DAY_OF_WEEK field indicating Tuesday.
static int UNDECIMBER
          Value of the MONTH field indicating the thirteenth month of the year.
protected static int UNSET
          Value of the time stamp stamp[] indicating that a field has not been set since the last call to clear().
static int WEDNESDAY
          Value of the DAY_OF_WEEK field indicating Wednesday.
static int WEEK_OF_MONTH
          Field number for get and set indicating the week number within the current month.
static int WEEK_OF_YEAR
          Field number for get and set indicating the week number within the current year.
static int WEEKDAY
          Value returned by getDayOfWeekType(int dayOfWeek) to indicate a weekday.
static int WEEKEND
          Value returned by getDayOfWeekType(int dayOfWeek) to indicate a weekend day.
static int WEEKEND_CEASE
          Value returned by getDayOfWeekType(int dayOfWeek) to indicate a day that starts as the weekend and transitions to a weekday.
static int WEEKEND_ONSET
          Value returned by getDayOfWeekType(int dayOfWeek) to indicate a day that starts as a weekday and transitions to the weekend.
static int YEAR
          Field number for get and set indicating the year.
static int YEAR_WOY
          Field number for get() and set() indicating the extended year corresponding to the WEEK_OF_YEAR field.
static int ZONE_OFFSET
          Field number for get and set indicating the raw offset from GMT in milliseconds.
 
Constructor Summary
protected Calendar()
          Constructs a Calendar with the default time zone and locale.
protected Calendar(TimeZone zone, Locale aLocale)
          Constructs a calendar with the specified time zone and locale.
protected Calendar(TimeZone zone, ULocale locale)
          Constructs a calendar with the specified time zone and locale.
 
Method Summary
 void add(int field, int amount)
          Add a signed amount to a specified field, using this calendar's rules.
 boolean after(Object when)
          Compares the time field records.
 boolean before(Object when)
          Compares the time field records.
 void clear()
          Clears the values of all the time fields.
 void clear(int field)
          Clears the value in the given time field.
 Object clone()
          Overrides Cloneable
 int compareTo(Calendar that)
          Compares the times (in millis) represented by two Calendar objects.
 int compareTo(Object that)
          Implement comparable API as a convenience override of compareTo(Calendar).
protected  void complete()
          Fills in any unset fields in the time field list.
protected  void computeFields()
          Converts the current millisecond time value time to field values in fields[].
protected  void computeGregorianFields(int julianDay)
          Compute the Gregorian calendar year, month, and day of month from the Julian day.
protected  int computeGregorianMonthStart(int year, int month)
          Compute the Julian day of a month of the Gregorian calendar.
protected  int computeJulianDay()
          Compute the Julian day number as specified by this calendar's fields.
protected  int computeMillisInDay()
          Compute the milliseconds in the day from the fields.
protected  void computeTime()
          Converts the current field values in fields[] to the millisecond time value time.
protected  int computeZoneOffset(long millis, int millisInDay)
          This method can assume EXTENDED_YEAR has been set.
 boolean equals(Object obj)
          Compares this calendar to the specified object.
 int fieldDifference(Date when, int field)
          [NEW] Return the difference between the given time and the time this calendar object is set to.
protected  String fieldName(int field)
          Return a string name for a field, for debugging and exceptions.
protected static int floorDivide(int numerator, int denominator)
          Divide two integers, returning the floor of the quotient.
protected static int floorDivide(int numerator, int denominator, int[] remainder)
          Divide two integers, returning the floor of the quotient, and the modulus remainder.
protected static int floorDivide(long numerator, int denominator, int[] remainder)
          Divide two integers, returning the floor of the quotient, and the modulus remainder.
protected static long floorDivide(long numerator, long denominator)
          Divide two long integers, returning the floor of the quotient.
 int get(int field)
          Gets the value for a given time field.
 int getActualMaximum(int field)
          Return the maximum value that this field could have, given the current date.
 int getActualMinimum(int field)
          Return the minimum value that this field could have, given the current date.
static Locale[] getAvailableLocales()
          Gets the list of locales for which Calendars are installed.
static ULocale[] getAvailableULocales()
          Gets the list of locales for which Calendars are installed.
 DateFormat getDateTimeFormat(int dateStyle, int timeStyle, Locale loc)
          Return a DateFormat appropriate to this calendar.
 DateFormat getDateTimeFormat(int dateStyle, int timeStyle, ULocale loc)
          Return a DateFormat appropriate to this calendar.
 int getDayOfWeekType(int dayOfWeek)
          Return whether the given day of the week is a weekday, a weekend day, or a day that transitions from one to the other, in this calendar system.
protected  int getDefaultDayInMonth(int extendedYear, int month)
          Subclasses may override this.
protected  int getDefaultMonthInYear(int extendedYear)
          Subclasses may override this.
 String getDisplayName(Locale loc)
          Return the name of this calendar in the language of the given locale.
 String getDisplayName(ULocale loc)
          Return the name of this calendar in the language of the given locale.
 int getFieldCount()
          Return the number of fields defined by this calendar.
protected  int[][][] getFieldResolutionTable()
          Return the field resolution array for this calendar.
 int getFirstDayOfWeek()
          Gets what the first day of the week is; e.g., Sunday in US, Monday in France.
 int getGreatestMinimum(int field)
          Gets the highest minimum value for the given field if varies.
protected  int getGregorianDayOfMonth()
          Return the day of month (1-based) on the Gregorian calendar as computed by computeGregorianFields().
protected  int getGregorianDayOfYear()
          Return the day of year (1-based) on the Gregorian calendar as computed by computeGregorianFields().
protected  int getGregorianMonth()
          Return the month (0-based) on the Gregorian calendar as computed by computeGregorianFields().
protected  int getGregorianYear()
          Return the extended year on the Gregorian calendar as computed by computeGregorianFields().
static Calendar getInstance()
          Gets a calendar using the default time zone and locale.
static Calendar getInstance(Locale aLocale)
          Gets a calendar using the default time zone and specified locale.
static Calendar getInstance(TimeZone zone)
          Gets a calendar using the specified time zone and default locale.
static Calendar getInstance(TimeZone zone, Locale aLocale)
          Gets a calendar with the specified time zone and locale.
static Calendar getInstance(TimeZone zone, ULocale locale)
          Gets a calendar with the specified time zone and locale.
static Calendar getInstance(ULocale locale)
          Gets a calendar using the default time zone and specified locale.
 int getLeastMaximum(int field)
          Gets the lowest maximum value for the given field if varies.
protected  int getLimit(int field, int limitType)
          Return a limit for a field.
 ULocale getLocale(ULocale.Type type)
          Return the locale that was used to create this object, or null.
 int getMaximum(int field)
          Gets the maximum value for the given time field.
 int getMinimalDaysInFirstWeek()
          Gets what the minimal days required in the first week of the year are; e.g., if the first week is defined as one that contains the first day of the first month of a year, getMinimalDaysInFirstWeek returns 1.
 int getMinimum(int field)
          Gets the minimum value for the given time field.
protected  int getStamp(int field)
          Return the timestamp of a field.
 Date getTime()
          Gets this Calendar's current time.
 long getTimeInMillis()
          Gets this Calendar's current time as a long.
 TimeZone getTimeZone()
          Gets the time zone.
 String getType()
          Return the current Calendar type.
 int getWeekendTransition(int dayOfWeek)
          Return the time during the day at which the weekend begins or end in this calendar system.
protected static int gregorianMonthLength(int y, int m)
          Return the length of a month of the Gregorian calendar.
protected static int gregorianPreviousMonthLength(int y, int m)
          Return the length of a previous month of the Gregorian calendar.
protected  void handleComputeFields(int julianDay)
          Subclasses may override this method to compute several fields specific to each calendar system.
protected  int handleComputeJulianDay(int bestField)
          Subclasses may override this.
protected abstract  int handleComputeMonthStart(int eyear, int month, boolean useMonth)
          Return the Julian day number of day before the first day of the given month in the given extended year.
protected  int[] handleCreateFields()
          Subclasses that use additional fields beyond those defined in Calendar should override this method to return an int[] array of the appropriate length.
protected  DateFormat handleGetDateFormat(String pattern, Locale locale)
          Create a DateFormat appropriate to this calendar.
protected  DateFormat handleGetDateFormat(String pattern, ULocale locale)
          Create a DateFormat appropriate to this calendar.
protected abstract  int handleGetExtendedYear()
          Return the extended year defined by the current fields.
protected abstract  int handleGetLimit(int field, int limitType)
          Subclass API for defining limits of different types.
protected  int handleGetMonthLength(int extendedYear, int month)
          Return the number of days in the given month of the given extended year of this calendar system.
protected  int handleGetYearLength(int eyear)
          Return the number of days in the given extended year of this calendar system.
 int hashCode()
          Returns a hash code for this calendar.
protected  int internalGet(int field)
          Gets the value for a given time field.
protected  int internalGet(int field, int defaultValue)
          Get the value for a given time field, or return the given default value if the field is not set.
protected  long internalGetTimeInMillis()
          Return the current milliseconds without recomputing.
protected  void internalSet(int field, int value)
          Set a field to a value.
 boolean isEquivalentTo(Calendar other)
          Returns true if the given Calendar object is equivalent to this one.
protected static boolean isGregorianLeapYear(int year)
          Determines if the given year is a leap year.
 boolean isLenient()
          Tell whether date/time interpretation is to be lenient.
 boolean isSet(int field)
          Determines if the given time field has a value set.
 boolean isWeekend()
          Return true if this Calendar's current date and time is in the weekend in this calendar system.
 boolean isWeekend(Date date)
          Return true if the given date and time is in the weekend in this calendar system.
protected static int julianDayToDayOfWeek(int julian)
          Return the day of week, from SUNDAY to SATURDAY, given a Julian day.
protected static long julianDayToMillis(int julian)
          Converts Julian day to time as milliseconds.
protected static int millisToJulianDay(long millis)
          Converts time as milliseconds to Julian day.
protected  int newerField(int defaultField, int alternateField)
          Return the field that is newer, either defaultField, or alternateField.
protected  int newestStamp(int first, int last, int bestStampSoFar)
          Return the newest stamp of a given range of fields.
protected  void pinField(int field)
          Adjust the specified field so that it is within the allowable range for the date to which this calendar is set.
protected  void prepareGetActual(int field, boolean isMinimum)
          Prepare this calendar for computing the actual minimum or maximum.
protected  int resolveFields(int[][][] precedenceTable)
          Given a precedence table, return the newest field combination in the table, or -1 if none is found.
 void roll(int field, boolean up)
          Rolls (up/down) a single unit of time on the given field.
 void roll(int field, int amount)
          Rolls (up/down) a specified amount time on the given field.
 void set(int field, int value)
          Sets the time field with the given value.
 void set(int year, int month, int date)
          Sets the values for the fields year, month, and date.
 void set(int year, int month, int date, int hour, int minute)
          Sets the values for the fields year, month, date, hour, and minute.
 void set(int year, int month, int date, int hour, int minute, int second)
          Sets the values for the fields year, month, date, hour, minute, and second.
 void setFirstDayOfWeek(int value)
          Sets what the first day of the week is; e.g., Sunday in US, Monday in France.
 void setLenient(boolean lenient)
          Specify whether or not date/time interpretation is to be lenient.
 void setMinimalDaysInFirstWeek(int value)
          Sets what the minimal days required in the first week of the year are.
 void setTime(Date date)
          Sets this Calendar's current time with the given Date.
 void setTimeInMillis(long millis)
          Sets this Calendar's current time from the given long value.
 void setTimeZone(TimeZone value)
          Sets the time zone with the given time zone value.
 String toString()
          Return a string representation of this calendar.
protected  void validateField(int field)
          Validate a single field of this calendar.
protected  void validateField(int field, int min, int max)
          Validate a single field of this calendar given its minimum and maximum allowed value.