public abstract class

Calendar

extends Object
implements Serializable Cloneable Comparable<T>
java.lang.Object
   ↳ java.util.Calendar
Known Direct Subclasses

Class Overview

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.)

Subclasses of Calendar interpret a Date according to the rules of a specific calendar system.

Like other locale-sensitive classes, Calendar provides a class method, getInstance, for getting a default instance of this class for general use. Calendar's getInstance method returns a calendar whose locale is based on system settings and whose time fields have been initialized with the current date and time:

Calendar rightNow = Calendar.getInstance()

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: 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 form a sequence of three consecutive minutes in time.
  2. Although historically not precise, midnight also belongs to "am", and noon belongs to "pm", so on the same day, we have 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.

Summary

Constants
int AM Value of the AM_PM field indicating the period of the day from midnight to just before noon.
int AM_PM Field number for get and set indicating whether the HOUR is before or after noon.
int APRIL Value of the MONTH field indicating the fourth month of the year.
int AUGUST Value of the MONTH field indicating the eighth month of the year.
int DATE Field number for get and set indicating the day of the month.
int DAY_OF_MONTH Field number for get and set indicating the day of the month.
int DAY_OF_WEEK Field number for get and set indicating the day of the week.
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.
int DAY_OF_YEAR Field number for get and set indicating the day number within the current year.
int DECEMBER Value of the MONTH field indicating the twelfth month of the year.
int DST_OFFSET Field number for get and set indicating the daylight savings offset in milliseconds.
int ERA Field number for get and set indicating the era, e.g., AD or BC in the Julian calendar.
int FEBRUARY Value of the MONTH field indicating the second month of the year.
int FIELD_COUNT This is the total number of fields in this calendar.
int FRIDAY Value of the DAY_OF_WEEK field indicating Friday.
int HOUR Field number for get and set indicating the hour of the morning or afternoon.
int HOUR_OF_DAY Field number for get and set indicating the hour of the day.
int JANUARY Value of the MONTH field indicating the first month of the year.
int JULY Value of the MONTH field indicating the seventh month of the year.
int JUNE Value of the MONTH field indicating the sixth month of the year.
int MARCH Value of the MONTH field indicating the third month of the year.
int MAY Value of the MONTH field indicating the fifth month of the year.
int MILLISECOND Field number for get and set indicating the millisecond within the second.
int MINUTE Field number for get and set indicating the minute within the hour.
int MONDAY Value of the DAY_OF_WEEK field indicating Monday.
int MONTH Field number for get and set indicating the month.
int NOVEMBER Value of the MONTH field indicating the eleventh month of the year.
int OCTOBER Value of the MONTH field indicating the tenth month of the year.
int PM Value of the AM_PM field indicating the period of the day from noon to just before midnight.
int SATURDAY Value of the DAY_OF_WEEK field indicating Saturday.
int SECOND Field number for get and set indicating the second within the minute.
int SEPTEMBER Value of the MONTH field indicating the ninth month of the year.
int SUNDAY Value of the DAY_OF_WEEK field indicating Sunday.
int THURSDAY Value of the DAY_OF_WEEK field indicating Thursday.
int TUESDAY Value of the DAY_OF_WEEK field indicating Tuesday.
int UNDECIMBER Value of the MONTH field indicating the thirteenth month of the year.
int WEDNESDAY Value of the DAY_OF_WEEK field indicating Wednesday.
int WEEK_OF_MONTH Field number for get and set indicating the week number within the current month.
int WEEK_OF_YEAR Field number for get and set indicating the week number within the current year.
int YEAR Field number for get and set indicating the year.
int ZONE_OFFSET Field number for get and set indicating the raw offset from GMT in milliseconds.
Fields
protected boolean areFieldsSet Set to true when the calendar fields have been set from the time, set to false when a field is changed and the fields must be recomputed.
protected int[] fields An integer array of calendar fields.
protected boolean[] isSet A boolean array.
protected boolean isTimeSet Set to true when the time has been set, set to false when a field is changed and the time must be recomputed.
protected long time The time in milliseconds since January 1, 1970.
Protected Constructors
Calendar()
Constructs a Calendar instance using the default TimeZone and Locale.
Calendar(TimeZone timezone, Locale locale)
Constructs a Calendar instance using the specified TimeZone and Locale.
Public Methods
abstract void add(int field, int value)
Adds the specified amount to a Calendar field.
boolean after(Object calendar)
Returns whether the Date specified by this Calendar instance is after the Date specified by the parameter.
boolean before(Object calendar)
Returns whether the Date specified by this Calendar instance is before the Date specified by the parameter.
final void clear()
Clears all of the fields of this Calendar.
final void clear(int field)
Clears the specified field to zero and sets the isSet flag to false.
Object clone()
Returns a new Calendar with the same properties.
int compareTo(Calendar anotherCalendar)
Compares the times of the two Calendar, which represent the milliseconds from the January 1, 1970 00:00:00.000 GMT (Gregorian).
boolean equals(Object object)
Compares the specified object to this Calendar and returns whether they are equal.
int get(int field)
Gets the value of the specified field after computing the field values by calling complete() first.
int getActualMaximum(int field)
Gets the maximum value of the specified field for the current date.
int getActualMinimum(int field)
Gets the minimum value of the specified field for the current date.
synchronized static Locale[] getAvailableLocales()
Gets the list of installed Locales which support Calendar.
int getFirstDayOfWeek()
Gets the first day of the week for this Calendar.
abstract int getGreatestMinimum(int field)
Gets the greatest minimum value of the specified field.
synchronized static Calendar getInstance(TimeZone timezone, Locale locale)
Constructs a new instance of the Calendar subclass appropriate for the specified Locale.
synchronized static Calendar getInstance()
Constructs a new instance of the Calendar subclass appropriate for the default Locale.
synchronized static Calendar getInstance(TimeZone timezone)
Constructs a new instance of the Calendar subclass appropriate for the default Locale, using the specified TimeZone.
synchronized static Calendar getInstance(Locale locale)
Constructs a new instance of the Calendar subclass appropriate for the specified Locale.
abstract int getLeastMaximum(int field)
Gets the smallest maximum value of the specified field.
abstract int getMaximum(int field)
Gets the greatest maximum value of the specified field.
int getMinimalDaysInFirstWeek()
Gets the minimal days in the first week of the year.
abstract int getMinimum(int field)
Gets the smallest minimum value of the specified field.
final Date getTime()
Gets the time of this Calendar as a Date object.
long getTimeInMillis()
Computes the time from the fields if required and returns the time.
TimeZone getTimeZone()
Gets the timezone of this Calendar.
int hashCode()
Returns an integer hash code for the receiver.
boolean isLenient()
Returns if this Calendar accepts field values which are outside the valid range for the field.
final boolean isSet(int field)
Returns whether the specified field is set.
void roll(int field, int value)
Adds the specified amount to the specified field and wraps the value of the field when it goes beyond the maximum or minimum value for the current date.
abstract void roll(int field, boolean increment)
Increment or decrement the specified field and wrap the value of the field when it goes beyond the maximum or minimum value for the current date.
final void set(int year, int month, int day, int hourOfDay, int minute)
Sets the year, month, day of the month, hour of day and minute fields.
void set(int field, int value)
Sets a field to the specified value.
final void set(int year, int month, int day)
Sets the year, month and day of the month fields.
final void set(int year, int month, int day, int hourOfDay, int minute, int second)
Sets the year, month, day of the month, hour of day, minute and second fields.
void setFirstDayOfWeek(int value)
Sets the first day of the week for this Calendar.
void setLenient(boolean value)
Sets this Calendar to accept field values which are outside the valid range for the field.
void setMinimalDaysInFirstWeek(int value)
Sets the minimal days in the first week of the year.
final void setTime(Date date)
Sets the time of this Calendar.
void setTimeInMillis(long milliseconds)
Sets the time of this Calendar.
void setTimeZone(TimeZone timezone)
Sets the TimeZone used by this Calendar.
String toString()
Returns the string representation of this Calendar.
Protected Methods
void complete()
Computes the time from the fields if the time has not already been set.
abstract void computeFields()
Computes the Calendar fields from time.
abstract void computeTime()
Computes time from the Calendar fields.
final int internalGet(int field)
Gets the value of the specified field without recomputing.
[Expand]
Inherited Methods
From class java.lang.Object
From interface java.lang.Comparable

Constants

public static final int AM

Value of the AM_PM field indicating the period of the day from midnight to just before noon.

Constant Value: 0 (0x00000000)

public static final int AM_PM

Field number for get and set indicating whether the HOUR is before or after noon. E.g., at 10:04:15.250 PM the AM_PM is PM.

See Also
Constant Value: 9 (0x00000009)

public static final int APRIL

Value of the MONTH field indicating the fourth month of the year.

Constant Value: 3 (0x00000003)

public static final int AUGUST

Value of the MONTH field indicating the eighth month of the year.

Constant Value: 7 (0x00000007)

public static final int DATE

Field number for get and set indicating the day of the month. This is a synonym for DAY_OF_MONTH. The first day of the month has value 1.

See Also
Constant Value: 5 (0x00000005)

public static final int DAY_OF_MONTH

Field number for get and set indicating the day of the month. This is a synonym for DATE. The first day of the month has value 1.

See Also
Constant Value: 5 (0x00000005)

public static final int DAY_OF_WEEK

Field number for get and set indicating the day of the week. This field takes values SUNDAY, MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, and SATURDAY.

Constant Value: 7 (0x00000007)

public static final 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. Together with the DAY_OF_WEEK field, this uniquely specifies a day within a month. Unlike WEEK_OF_MONTH and WEEK_OF_YEAR, this field's value does not depend on getFirstDayOfWeek() or getMinimalDaysInFirstWeek(). DAY_OF_MONTH 1 through 7 always correspond to DAY_OF_WEEK_IN_MONTH 1; 8 through 15 correspond to DAY_OF_WEEK_IN_MONTH 2, and so on. DAY_OF_WEEK_IN_MONTH 0 indicates the week before DAY_OF_WEEK_IN_MONTH 1. Negative values count back from the end of the month, so the last Sunday of a month is specified as DAY_OF_WEEK = SUNDAY, DAY_OF_WEEK_IN_MONTH = -1. Because negative values count backward they will usually be aligned differently within the month than positive values. For example, if a month has 31 days, DAY_OF_WEEK_IN_MONTH -1 will overlap DAY_OF_WEEK_IN_MONTH 5 and the end of 4.

Constant Value: 8 (0x00000008)

public static final int DAY_OF_YEAR

Field number for get and set indicating the day number within the current year. The first day of the year has value 1.

Constant Value: 6 (0x00000006)

public static final int DECEMBER

Value of the MONTH field indicating the twelfth month of the year.

Constant Value: 11 (0x0000000b)

public static final int DST_OFFSET

Field number for get and set indicating the daylight savings offset in milliseconds.

Constant Value: 16 (0x00000010)

public static final int ERA

Field number for get and set indicating the era, e.g., AD or BC in the Julian calendar. This is a calendar-specific value; see subclass documentation.

See Also
Constant Value: 0 (0x00000000)

public static final int FEBRUARY

Value of the MONTH field indicating the second month of the year.

Constant Value: 1 (0x00000001)

public static final int FIELD_COUNT

This is the total number of fields in this calendar.

Constant Value: 17 (0x00000011)

public static final int FRIDAY

Value of the DAY_OF_WEEK field indicating Friday.

Constant Value: 6 (0x00000006)

public static final int HOUR

Field number for get and set indicating the hour of the morning or afternoon. HOUR is used for the 12-hour clock. E.g., at 10:04:15.250 PM the HOUR is 10.

See Also
Constant Value: 10 (0x0000000a)

public static final int HOUR_OF_DAY

Field number for get and set indicating the hour of the day. HOUR_OF_DAY is used for the 24-hour clock. E.g., at 10:04:15.250 PM the HOUR_OF_DAY is 22.

See Also
Constant Value: 11 (0x0000000b)

public static final int JANUARY

Value of the MONTH field indicating the first month of the year.

Constant Value: 0 (0x00000000)

public static final int JULY

Value of the MONTH field indicating the seventh month of the year.

Constant Value: 6 (0x00000006)

public static final int JUNE

Value of the MONTH field indicating the sixth month of the year.

Constant Value: 5 (0x00000005)

public static final int MARCH

Value of the MONTH field indicating the third month of the year.

Constant Value: 2 (0x00000002)

public static final int MAY

Value of the MONTH field indicating the fifth month of the year.

Constant Value: 4 (0x00000004)

public static final int MILLISECOND

Field number for get and set indicating the millisecond within the second. E.g., at 10:04:15.250 PM the MILLISECOND is 250.

Constant Value: 14 (0x0000000e)

public static final int MINUTE

Field number for get and set indicating the minute within the hour. E.g., at 10:04:15.250 PM the MINUTE is 4.

Constant Value: 12 (0x0000000c)

public static final int MONDAY

Value of the DAY_OF_WEEK field indicating Monday.

Constant Value: 2 (0x00000002)

public static final int MONTH

Field number for get and set indicating the month. This is a calendar-specific value. The first month of the year is JANUARY; the last depends on the number of months in a year.

Constant Value: 2 (0x00000002)

public static final int NOVEMBER

Value of the MONTH field indicating the eleventh month of the year.

Constant Value: 10 (0x0000000a)

public static final int OCTOBER

Value of the MONTH field indicating the tenth month of the year.

Constant Value: 9 (0x00000009)

public static final int PM

Value of the AM_PM field indicating the period of the day from noon to just before midnight.

Constant Value: 1 (0x00000001)

public static final int SATURDAY

Value of the DAY_OF_WEEK field indicating Saturday.

Constant Value: 7 (0x00000007)

public static final int SECOND

Field number for get and set indicating the second within the minute. E.g., at 10:04:15.250 PM the SECOND is 15.

Constant Value: 13 (0x0000000d)

public static final int SEPTEMBER

Value of the MONTH field indicating the ninth month of the year.

Constant Value: 8 (0x00000008)

public static final int SUNDAY

Value of the DAY_OF_WEEK field indicating Sunday.

Constant Value: 1 (0x00000001)

public static final int THURSDAY

Value of the DAY_OF_WEEK field indicating Thursday.

Constant Value: 5 (0x00000005)

public static final int TUESDAY

Value of the DAY_OF_WEEK field indicating Tuesday.

Constant Value: 3 (0x00000003)

public static final int UNDECIMBER

Value of the MONTH field indicating the thirteenth month of the year. Although GregorianCalendar does not use this value, lunar calendars do.

Constant Value: 12 (0x0000000c)

public static final int WEDNESDAY

Value of the DAY_OF_WEEK field indicating Wednesday.

Constant Value: 4 (0x00000004)

public static final int WEEK_OF_MONTH

Field number for get and set indicating the week number within the current month. The first week of the month, as defined by getFirstDayOfWeek() and getMinimalDaysInFirstWeek(), has value 1. Subclasses define the value of WEEK_OF_MONTH for days before the first week of the month.

Constant Value: 4 (0x00000004)

public static final int WEEK_OF_YEAR

Field number for get and set indicating the week number within the current year. The first week of the year, as defined by getFirstDayOfWeek() and getMinimalDaysInFirstWeek(), has value 1. Subclasses define the value of WEEK_OF_YEAR for days before the first week of the year.

Constant Value: 3 (0x00000003)

public static final int YEAR

Field number for get and set indicating the year. This is a calendar-specific value; see subclass documentation.

Constant Value: 1 (0x00000001)

public static final int ZONE_OFFSET

Field number for get and set indicating the raw offset from GMT in milliseconds.

Constant Value: 15 (0x0000000f)

Fields

protected boolean areFieldsSet

Set to true when the calendar fields have been set from the time, set to false when a field is changed and the fields must be recomputed.

protected int[] fields

An integer array of calendar fields. The length is FIELD_COUNT.

protected boolean[] isSet

A boolean array. Each element indicates if the corresponding field has been set. The length is FIELD_COUNT.

protected boolean isTimeSet

Set to true when the time has been set, set to false when a field is changed and the time must be recomputed.

protected long time

The time in milliseconds since January 1, 1970.

Protected Constructors

protected Calendar ()

Constructs a Calendar instance using the default TimeZone and Locale.

protected Calendar (TimeZone timezone, Locale locale)

Constructs a Calendar instance using the specified TimeZone and Locale.

Parameters
timezone the timezone.
locale the locale.

Public Methods

public abstract void add (int field, int value)

Adds the specified amount to a Calendar field.

Parameters
field the Calendar field to modify.
value the amount to add to the field.

public boolean after (Object calendar)

Returns whether the Date specified by this Calendar instance is after the Date specified by the parameter. The comparison is not dependent on the time zones of the Calendar.

Parameters
calendar the Calendar instance to compare.
Returns
  • true when this Calendar is after calendar, false otherwise.

public boolean before (Object calendar)

Returns whether the Date specified by this Calendar instance is before the Date specified by the parameter. The comparison is not dependent on the time zones of the Calendar.

Parameters
calendar the Calendar instance to compare.
Returns
  • true when this Calendar is before calendar, false otherwise.

public final void clear ()

Clears all of the fields of this Calendar. All fields are initialized to zero.

public final void clear (int field)

Clears the specified field to zero and sets the isSet flag to false.

Parameters
field the field to clear.

public Object clone ()

Returns a new Calendar with the same properties.

Returns
  • a shallow copy of this Calendar.
See Also

public int compareTo (Calendar anotherCalendar)

Compares the times of the two Calendar, which represent the milliseconds from the January 1, 1970 00:00:00.000 GMT (Gregorian).

Parameters
anotherCalendar another calendar that this one is compared with.
Returns
  • 0 if the times of the two Calendars are equal, -1 if the time of this Calendar is before the other one, 1 if the time of this Calendar is after the other one.
Throws
NullPointerException if the argument is null.
IllegalArgumentException if the argument does not include a valid time value.

public boolean equals (Object object)

Compares the specified object to this Calendar and returns whether they are equal. The object must be an instance of Calendar and have the same properties.

Parameters
object the object to compare with this object.
Returns
  • true if the specified object is equal to this Calendar, false otherwise.

public int get (int field)

Gets the value of the specified field after computing the field values by calling complete() first.

Parameters
field the field to get.
Returns
  • the value of the specified field.
Throws
IllegalArgumentException when the fields are not set, the time is not set, and the time cannot be computed from the current field values.
ArrayIndexOutOfBoundsException if the field is not inside the range of possible fields. The range is starting at 0 up to FIELD_COUNT.

public int getActualMaximum (int field)

Gets the maximum value of the specified field for the current date.

Parameters
field the field.
Returns
  • the maximum value of the specified field.

public int getActualMinimum (int field)

Gets the minimum value of the specified field for the current date.

Parameters
field the field.
Returns
  • the minimum value of the specified field.

public static synchronized Locale[] getAvailableLocales ()

Gets the list of installed Locales which support Calendar.

Returns
  • an array of Locale.

public int getFirstDayOfWeek ()

Gets the first day of the week for this Calendar.

Returns
  • the first day of the week.

public abstract int getGreatestMinimum (int field)

Gets the greatest minimum value of the specified field. This is the biggest value that getActualMinimum can return for any possible time.

Parameters
field the field.
Returns
  • the greatest minimum value of the specified field.

public static synchronized Calendar getInstance (TimeZone timezone, Locale locale)

Constructs a new instance of the Calendar subclass appropriate for the specified Locale.

Parameters
timezone the TimeZone to use.
locale the Locale to use.
Returns
  • a Calendar subclass instance set to the current date and time in the specified timezone.

public static synchronized Calendar getInstance ()

Constructs a new instance of the Calendar subclass appropriate for the default Locale.

Returns
  • a Calendar subclass instance set to the current date and time in the default Timezone.

public static synchronized Calendar getInstance (TimeZone timezone)

Constructs a new instance of the Calendar subclass appropriate for the default Locale, using the specified TimeZone.

Parameters
timezone the TimeZone to use.
Returns
  • a Calendar subclass instance set to the current date and time in the specified timezone.

public static synchronized Calendar getInstance (Locale locale)

Constructs a new instance of the Calendar subclass appropriate for the specified Locale.

Parameters
locale the locale to use.
Returns
  • a Calendar subclass instance set to the current date and time.

public abstract int getLeastMaximum (int field)

Gets the smallest maximum value of the specified field. This is the smallest value that getActualMaximum() can return for any possible time.

Parameters
field the field number.
Returns
  • the smallest maximum value of the specified field.

public abstract int getMaximum (int field)

Gets the greatest maximum value of the specified field. This returns the biggest value that get can return for the specified field.

Parameters
field the field.
Returns
  • the greatest maximum value of the specified field.

public int getMinimalDaysInFirstWeek ()

Gets the minimal days in the first week of the year.

Returns
  • the minimal days in the first week of the year.

public abstract int getMinimum (int field)

Gets the smallest minimum value of the specified field. this returns the smallest value thet get can return for the specified field.

Parameters
field the field number.
Returns
  • the smallest minimum value of the specified field.

public final Date getTime ()

Gets the time of this Calendar as a Date object.

Returns
  • a new Date initialized to the time of this Calendar.
Throws
IllegalArgumentException when the time is not set and the time cannot be computed from the current field values.

public long getTimeInMillis ()

Computes the time from the fields if required and returns the time.

Returns
  • the time of this Calendar.
Throws
IllegalArgumentException when the time is not set and the time cannot be computed from the current field values.

public TimeZone getTimeZone ()

Gets the timezone of this Calendar.

Returns
  • the TimeZone used by this Calendar.

public int hashCode ()

Returns an integer hash code for the receiver. Objects which are equal return the same value for this method.

Returns
  • the receiver's hash.
See Also

public boolean isLenient ()

Returns if this Calendar accepts field values which are outside the valid range for the field.

Returns
  • true if this Calendar is lenient, false otherwise.

public final boolean isSet (int field)

Returns whether the specified field is set.

Parameters
field a Calendar field number.
Returns
  • true if the specified field is set, false otherwise.

public void roll (int field, int value)

Adds the specified amount to the specified field and wraps the value of the field when it goes beyond the maximum or minimum value for the current date. Other fields will be adjusted as required to maintain a consistent date.

Parameters
field the field to roll.
value the amount to add.

public abstract void roll (int field, boolean increment)

Increment or decrement the specified field and wrap the value of the field when it goes beyond the maximum or minimum value for the current date. Other fields will be adjusted as required to maintain a consistent date.

Parameters
field the number indicating the field to roll.
increment true to increment the field, false to decrement.

public final void set (int year, int month, int day, int hourOfDay, int minute)

Sets the year, month, day of the month, hour of day and minute fields. Other fields are not changed.

Parameters
year the year.
month the month.
day the day of the month.
hourOfDay the hour of day.
minute the minute.

public void set (int field, int value)

Sets a field to the specified value.

Parameters
field the code indicating the Calendar field to modify.
value the value.

public final void set (int year, int month, int day)

Sets the year, month and day of the month fields. Other fields are not changed.

Parameters
year the year.
month the month.
day the day of the month.

public final void set (int year, int month, int day, int hourOfDay, int minute, int second)

Sets the year, month, day of the month, hour of day, minute and second fields. Other fields are not changed.

Parameters
year the year.
month the month.
day the day of the month.
hourOfDay the hour of day.
minute the minute.
second the second.

public void setFirstDayOfWeek (int value)

Sets the first day of the week for this Calendar.

Parameters
value a Calendar day of the week.

public void setLenient (boolean value)

Sets this Calendar to accept field values which are outside the valid range for the field.

Parameters
value a boolean value.

public void setMinimalDaysInFirstWeek (int value)

Sets the minimal days in the first week of the year.

Parameters
value the minimal days in the first week of the year.

public final void setTime (Date date)

Sets the time of this Calendar.

Parameters
date a Date object.

public void setTimeInMillis (long milliseconds)

Sets the time of this Calendar.

Parameters
milliseconds the time as the number of milliseconds since Jan. 1, 1970.

public void setTimeZone (TimeZone timezone)

Sets the TimeZone used by this Calendar.

Parameters
timezone a TimeZone.

public String toString ()

Returns the string representation of this Calendar.

Returns
  • the string representation of this Calendar.

Protected Methods

protected void complete ()

Computes the time from the fields if the time has not already been set. Computes the fields from the time if the fields are not already set.

Throws
IllegalArgumentException when the time is not set and the time cannot be computed from the current field values.

protected abstract void computeFields ()

Computes the Calendar fields from time.

protected abstract void computeTime ()

Computes time from the Calendar fields.

Throws
IllegalArgumentException when the time cannot be computed from the current field values.

protected final int internalGet (int field)

Gets the value of the specified field without recomputing.

Parameters
field the field.
Returns
  • the value of the specified field.