home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1998 July & August
/
Pcwk78a98.iso
/
Internet
/
Javadraw
/
DATA.Z
/
GregorianCalendar.java
< prev
next >
Wrap
Text File
|
1997-08-30
|
60KB
|
1,481 lines
/*
* @(#)GregorianCalendar.java 1.21 97/07/15
*
* (C) Copyright Taligent, Inc. 1996-1997 - All Rights Reserved
* (C) Copyright IBM Corp. 1996-1997 - All Rights Reserved
*
* Portions copyright (c) 1996 Sun Microsystems, Inc. All Rights Reserved.
*
* The original version of this source code and documentation is copyrighted
* and owned by Taligent, Inc., a wholly-owned subsidiary of IBM. These
* materials are provided under terms of a License Agreement between Taligent
* and Sun. This technology is protected by multiple US and International
* patents. This notice and attribution to Taligent may not be removed.
* Taligent is a registered trademark of Taligent, Inc.
*
* Permission to use, copy, modify, and distribute this software
* and its documentation for NON-COMMERCIAL purposes and without
* fee is hereby granted provided that this copyright notice
* appears in all copies. Please refer to the file "copyright.html"
* for further important copyright and licensing information.
*
* SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF
* THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
* TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
* PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR
* ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
* DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.
*
*/
package java.util;
/**
* <code>GregorianCalendar</code> is a concrete subclass of
* <a href="java.util.Calendar.html"><code>Calendar</code></a>
* and provides the standard calendar used by most of the world.
*
* <p>
* The standard (Gregorian) calendar has 2 eras, BC and AD.
*
* <p>
* This implementation handles a single discontinuity, which corresponds
* by default to the date the Gregorian calendar was instituted (October 15,
* 1582 in some countries, later in others). This cutover date may be changed
* by the caller.
*
* <p>
* Prior to the institution of the Gregorian calendar, New Year's Day was
* March 25. To avoid confusion, this calendar always uses January 1. A manual
* adjustment may be made if desired for dates that are prior to the Gregorian
* changeover and which fall between January 1 and March 24.
*
* <p>
* The current implementation handles dates in a wide range, from
* 4716 BC up to 5000000 AD. Dates outside of that range
* will throw an IllegalArgumentException. This range should be broadened
* in the future.
*
* <p>
* <strong>Example:</strong>
* <blockquote>
* <pre>
* // get the supported ids for GMT-08:00 (Pacific Standard Time)
* String[] ids = TimeZone.getAvailableIDs(-8 * 60 * 60 * 1000);
* // if no ids were returned, something is wrong. get out.
* if (ids.length == 0)
* System.exit(0);
*
* // begin output
* System.out.println("Current Time");
*
* // create a Pacific Standard Time time zone
* SimpleTimeZone pdt = new SimpleTimeZone(-8 * 60 * 60 * 1000, ids[0]);
*
* // set up rules for daylight savings time
* pdt.setStartRule(Calendar.APRIL, 1, Calendar.SUNDAY, 2 * 60 * 60 * 1000);
* pdt.setEndRule(Calendar.OCTOBER, -1, Calendar.SUNDAY, 2 * 60 * 60 * 1000);
*
* // create a GregorianCalendar with the Pacific Daylight time zone
* // and the current date and time
* Calendar calendar = new GregorianCalendar(pdt);
* Date trialTime = new Date();
* calendar.setTime(trialTime);
*
* // print out a bunch of interesting things
* System.out.println("ERA: " + calendar.get(Calendar.ERA));
* System.out.println("YEAR: " + calendar.get(Calendar.YEAR));
* System.out.println("MONTH: " + calendar.get(Calendar.MONTH));
* System.out.println("WEEK_OF_YEAR: " + calendar.get(Calendar.WEEK_OF_YEAR));
* System.out.println("WEEK_OF_MONTH: " + calendar.get(Calendar.WEEK_OF_MONTH));
* System.out.println("DATE: " + calendar.get(Calendar.DATE));
* System.out.println("DAY_OF_MONTH: " + calendar.get(Calendar.DAY_OF_MONTH));
* System.out.println("DAY_OF_YEAR: " + calendar.get(Calendar.DAY_OF_YEAR));
* System.out.println("DAY_OF_WEEK: " + calendar.get(Calendar.DAY_OF_WEEK));
* System.out.println("DAY_OF_WEEK_IN_MONTH: "
* + calendar.get(Calendar.DAY_OF_WEEK_IN_MONTH));
* System.out.println("AM_PM: " + calendar.get(Calendar.AM_PM));
* System.out.println("HOUR: " + calendar.get(Calendar.HOUR));
* System.out.println("HOUR_OF_DAY: " + calendar.get(Calendar.HOUR_OF_DAY));
* System.out.println("MINUTE: " + calendar.get(Calendar.MINUTE));
* System.out.println("SECOND: " + calendar.get(Calendar.SECOND));
* System.out.println("MILLISECOND: " + calendar.get(Calendar.MILLISECOND));
* System.out.println("ZONE_OFFSET: "
* + (calendar.get(Calendar.ZONE_OFFSET)/(60*60*1000)));
* System.out.println("DST_OFFSET: "
* + (calendar.get(Calendar.DST_OFFSET)/(60*60*1000)));
* System.out.println("Current Time, with hour reset to 3");
* calendar.clear(Calendar.HOUR_OF_DAY); // so doesn't override
* calendar.set(Calendar.HOUR, 3);
* System.out.println("ERA: " + calendar.get(Calendar.ERA));
* System.out.println("YEAR: " + calendar.get(Calendar.YEAR));
* System.out.println("MONTH: " + calendar.get(Calendar.MONTH));
* System.out.println("WEEK_OF_YEAR: " + calendar.get(Calendar.WEEK_OF_YEAR));
* System.out.println("WEEK_OF_MONTH: " + calendar.get(Calendar.WEEK_OF_MONTH));
* System.out.println("DATE: " + calendar.get(Calendar.DATE));
* System.out.println("DAY_OF_MONTH: " + calendar.get(Calendar.DAY_OF_MONTH));
* System.out.println("DAY_OF_YEAR: " + calendar.get(Calendar.DAY_OF_YEAR));
* System.out.println("DAY_OF_WEEK: " + calendar.get(Calendar.DAY_OF_WEEK));
* System.out.println("DAY_OF_WEEK_IN_MONTH: "
* + calendar.get(Calendar.DAY_OF_WEEK_IN_MONTH));
* System.out.println("AM_PM: " + calendar.get(Calendar.AM_PM));
* System.out.println("HOUR: " + calendar.get(Calendar.HOUR));
* System.out.println("HOUR_OF_DAY: " + calendar.get(Calendar.HOUR_OF_DAY));
* System.out.println("MINUTE: " + calendar.get(Calendar.MINUTE));
* System.out.println("SECOND: " + calendar.get(Calendar.SECOND));
* System.out.println("MILLISECOND: " + calendar.get(Calendar.MILLISECOND));
* System.out.println("ZONE_OFFSET: "
* + (calendar.get(Calendar.ZONE_OFFSET)/(60*60*1000))); // in hours
* System.out.println("DST_OFFSET: "
* + (calendar.get(Calendar.DST_OFFSET)/(60*60*1000))); // in hours
* </pre>
* </blockquote>
*
* @see Calendar
* @see TimeZone
* @version 1.21 07/15/97
* @author David Goldsmith, Mark Davis, Chen-Lieh Huang, Alan Liu
*/
public class GregorianCalendar extends Calendar {
// Internal notes:
// This algorithm is based on the one presented on pp. 10-12 of
// "Numerical Recipes in C", William H. Press, et. al., Cambridge
// University Press 1988, ISBN 0-521-35465-X.
/**
* Useful constant for GregorianCalendar.
*/
public static final int BC = 0;
/**
* Useful constant for GregorianCalendar.
*/
public static final int AD = 1;
// Note that the Julian date used here is not a true Julian date, since
// it is measured from midnight, not noon.
private static final long julianDayOffset = 2440588;
private static final int millisPerDay = 24 * 60 * 60 * 1000;
private static final int NUM_DAYS[]
= {0,31,59,90,120,151,181,212,243,273,304,334}; // 0-based, for day-in-year
private static final int LEAP_NUM_DAYS[]
= {0,31,60,91,121,152,182,213,244,274,305,335}; // 0-based, for day-in-year
private static final int MONTH_LENGTH[]
= {31,28,31,30,31,30,31,31,30,31,30,31}; // 0-based
private static final int LEAP_MONTH_LENGTH[]
= {31,29,31,30,31,30,31,31,30,31,30,31}; // 0-based
// This is measured from the standard epoch, not in Julian Days.
// Default is 00:00:00 local time, October 15, 1582.
private long gregorianCutover = -12219292800000L;
// The onset of the Julian calendar is 45 B.C. The Julian day
// number for the start of the year 45 B.C. is 1712653. We compute
// the Julian onset as epoch-based millis. Note that this number is
// useful for rough comparison purposes only; it's not exact. [LIU]
private static long JULIAN_ONSET = (1712653 - julianDayOffset) * millisPerDay;
// The earliest date we can handle for computing into fields is January 1,
// 4716 B.C. This limit is the same regardless of when the Gregorian
// cutover is, because it is before all cutovers. If we try to compute the
// fields for a date before this date, we get nonsense values. The
// following constant encodes this date as millis from the epoch. [LIU]
private static long EARLIEST_USABLE_MILLIS = -210993120000000L;
private static int EARLIEST_USABLE_YEAR = 4716;
/**
* Converts time as milliseconds to Julian date.
* @param millis the given milliseconds.
* @return the Julian date number.
*/
private static final long millisToJulianDay(long millis)
{
if (millis >= 0)
return julianDayOffset + (millis / millisPerDay);
else
return julianDayOffset
+ ((millis - millisPerDay + 1) / millisPerDay);
}
/**
* Converts Julian date to time as milliseconds.
* @param julian the given Julian date number.
* @return time as milliseconds.
*/
private static final long julianDayToMillis(long julian)
{
return (julian - julianDayOffset) * millisPerDay;
}
/**
* Constructs a default GregorianCalendar using the current time
* in the default time zone with the default locale.
*/
public GregorianCalendar()
{
this(TimeZone.getDefault(), Locale.getDefault());
}
/**
* Constructs a GregorianCalendar based on the current time
* in the given time zone with the default locale.
* @param zone the given time zone.
*/
public GregorianCalendar(TimeZone zone)
{
this(zone, Locale.getDefault());
}
/**
* Constructs a GregorianCalendar based on the current time
* in the default time zone with the given locale.
* @param aLocale the given locale.
*/
public GregorianCalendar(Locale aLocale)
{
this(TimeZone.getDefault(), aLocale);
}
/**
* Constructs a GregorianCalendar based on the current time
* in the given time zone with the given locale.
* @param zone the given time zone.
* @param aLocale the given locale.
*/
public GregorianCalendar(TimeZone zone, Locale aLocale)
{
super(zone, aLocale);
setTimeInMillis(System.currentTimeMillis());
}
/**
* Constructs a GregorianCalendar with the given date set
* in the default time zone with the default locale.
* @param year the value used to set the YEAR time field in the calendar.
* @param month the value used to set the MONTH time field in the calendar.
* Month value is 0-based. e.g., 0 for January.
* @param date the value used to set the DATE time field in the calendar.
*/
public GregorianCalendar(int year, int month, int date)
{
super(TimeZone.getDefault(), Locale.getDefault());
this.set(Calendar.ERA, AD);
this.set(Calendar.YEAR, year);
this.set(Calendar.MONTH, month);
this.set(Calendar.DATE, date);
}
/**
* Constructs a GregorianCalendar with the given date
* and time set for the default time zone with the default locale.
* @param year the value used to set the YEAR time field in the calendar.
* @param month the value used to set the MONTH time field in the calendar.
* Month value is 0-based. e.g., 0 for January.
* @param date the value used to set the DATE time field in the calendar.
* @param hour the value used to set the HOUR_OF_DAY time field
* in the calendar.
* @param minute the value used to set the MINUTE time field
* in the calendar.
*/
public GregorianCalendar(int year, int month, int date, int hour,
int minute)
{
super(TimeZone.getDefault(), Locale.getDefault());
this.set(Calendar.ERA, AD);
this.set(Calendar.YEAR, year);
this.set(Calendar.MONTH, month);
this.set(Calendar.DATE, date);
this.set(Calendar.HOUR_OF_DAY, hour);
this.set(Calendar.MINUTE, minute);
}
/**
* Constructs a GregorianCalendar with the given date
* and time set for the default time zone with the default locale.
* @param year the value used to set the YEAR time field in the calendar.
* @param month the value used to set the MONTH time field in the calendar.
* Month value is 0-based. e.g., 0 for January.
* @param date the value used to set the DATE time field in the calendar.
* @param hour the value used to set the HOUR_OF_DAY time field
* in the calendar.
* @param minute the value used to set the MINUTE time field
* in the calendar.
* @param second the value used to set the SECOND time field
* in the calendar.
*/
public GregorianCalendar(int year, int month, int date, int hour,
int minute, int second)
{
super(TimeZone.getDefault(), Locale.getDefault());
this.set(Calendar.ERA, AD);
this.set(Calendar.YEAR, year);
this.set(Calendar.MONTH, month);
this.set(Calendar.DATE, date);
this.set(Calendar.HOUR_OF_DAY, hour);
this.set(Calendar.MINUTE, minute);
this.set(Calendar.SECOND, second);
}
/**
* Sets the GregorianCalendar change date. This is the point when the
* switch from Julian dates to Gregorian dates occurred. Default is
* 00:00:00 local time, October 15, 1582. Previous to this time and date
* will be Julian dates.
*
* @param date the given Gregorian cutover date.
*/
public void setGregorianChange(Date date)
{
gregorianCutover = date.getTime();
}
/**
* Gets the Gregorian Calendar change date. This is the point when the
* switch from Julian dates to Gregorian dates occurred. Default is
* 00:00:00 local time, October 15, 1582. Previous to
* this time and date will be Julian dates.
* @return the Gregorian cutover time for this calendar.
*/
public final Date getGregorianChange()
{
return new Date(gregorianCutover);
}
private static final int julianDayToDayOfWeek(long julian)
{
// If julian is negative, then julian%7 will be negative, so we adjust
// accordingly. We add 1 because Julian day 0 is Monday.
int dayOfWeek = (int)((julian + 1) % 7);
return dayOfWeek + ((dayOfWeek < 0) ? (7 + SUNDAY) : SUNDAY);
}
/**
* Convert the time as milliseconds to the "big" fields. Millis must be
* given as local wall millis to get the correct local day. For example,
* if it is 11:30 pm Standard, and DST is in effect, the correct DST millis
* must be passed in to get the right date.
*
* Fields that are completed by this method: ERA, YEAR, MONTH, DATE,
* DAY_OF_WEEK, DAY_OF_YEAR, WEEK_OF_YEAR, WEEK_OF_MONTH,
* DAY_OF_WEEK_IN_MONTH.
*/
private final void timeToFields(long theTime)
{
int year, month, date, dayOfWeek, dayOfYear, weekCount, era = AD;
// The following algorithm only works for dates from January 1, 4716 BC
// onwards. We throw an IllegalArgumentException if the date is earlier
// than this.
if (theTime < EARLIEST_USABLE_MILLIS)
throw new IllegalArgumentException("GregorianCalendar does not handle dates before 4716 BC");
//---------------------------------------------------------------------
// BEGIN modified caldat()
//---------------------------------------------------------------------
// The following variable names are somewhat cryptic. Unfortunately,
// they are from the original program cited above, and no explanation
// for their meaning is given. Given that the algorithm is cryptic too,
// perhaps it doesn't matter...
long ja, jb, jd;
long jc, je; // changed from int to fix number overflow problem.
long julian = millisToJulianDay(theTime);
if (theTime >= gregorianCutover)
{
long jalpha = (long) (((double) (julian - 1867216) - 0.25)
/ 36524.25);
ja = julian + 1 + jalpha - (long) (0.25 * jalpha);
}
else
{
ja = julian;
}
jb = ja + 1524;
jc = (long) (6680.0 + ((double) (jb - 2439870) - 122.1) / 365.25);
jd = (long) (365*jc + (0.25 * jc));
je = (long) ((jb-jd)/30.6001);
date = (int) (jb-jd-(long) (30.6001 * je));
month = (int) je - 1;
if (month > 12)
month -= 12;
// Removed; this isn't needed, and in fact should be "if (month < 1)" if
// it is needed. [LIU]
// else if (month < 0) // added by CLH
// month += 12; // added by CLH, 8-7-96
year = (int) (jc-4715);
if (month > 2)
--year;
if (year <= 0)
{
era = BC;
year = 1-year;
}
//---------------------------------------------------------------------
// END modified caldat()
//---------------------------------------------------------------------
internalSet(ERA, era);
internalSet(YEAR, year);
internalSet(MONTH, month-1); // 0-based
internalSet(DATE, date);
dayOfWeek = julianDayToDayOfWeek(julian);
internalSet(DAY_OF_WEEK, dayOfWeek); // CLH, 8-7-96
if (isLeapYear(year))
dayOfYear = LEAP_NUM_DAYS[month-1] + date; // month: 0-based
else
dayOfYear = NUM_DAYS[month-1] + date; // month: 0-based
internalSet(DAY_OF_YEAR, dayOfYear);
internalSet(WEEK_OF_YEAR, weekNumber(dayOfYear, dayOfWeek));
internalSet(WEEK_OF_MONTH, weekNumber(date, dayOfWeek));
internalSet(DAY_OF_WEEK_IN_MONTH, (date-1) / 7 + 1);
}
/**
* Return the week number of a day, within a period. This may be the week number in
* a year, or the week number in a month. Usually this will be a value >= 1, but if
* some initial days of the period are excluded from week 1, because
* minimalDaysInFirstWeek is > 1, then the week number will be zero for those
* initial days. Requires the day of week for the given date in order to determine
* the day of week of the first day of the period.
*
* @param dayOfPeriod Day-of-year or day-of-month. Should be 1 for first day of period.
* @param day Day-of-week for given dayOfPeriod. 1-based with 1=Sunday.
* @return Week number, one-based, or zero if the day falls in part of the
* month before the first week, when there are days before the first
* week because the minimum days in the first week is more than one.
*/
private int weekNumber(int dayOfPeriod, int dayOfWeek)
{
// Determine the day of the week of the first day of the period
// in question (either a year or a month). Zero represents the
// first day of the week on this calendar.
int periodStartDayOfWeek = (dayOfWeek - getFirstDayOfWeek() - dayOfPeriod + 1) % 7;
if (periodStartDayOfWeek < 0) periodStartDayOfWeek += 7;
// Compute the week number. Initially, ignore the first week, which
// may be fractional (or may not be). We add periodStartDayOfWeek in
// order to fill out the first week, if it is fractional.
int weekNo = (dayOfPeriod + periodStartDayOfWeek - 1)/7;
// If the first week is long enough, then count it. If
// the minimal days in the first week is one, or if the period start
// is zero, we always increment weekNo.
if ((7 - periodStartDayOfWeek) >= getMinimalDaysInFirstWeek()) ++weekNo;
return weekNo;
}
/**
* Determines if the given year is a leap year. Returns true if the
* given year is a leap year.
* @param year the given year.
* @return true if the given year is a leap year; false otherwise.
*/
public boolean isLeapYear(int year)
{
// Compute the rough millis for the year. We only need this number to be
// good enough to compare it against JULIAN_ONSET.
long equivalent_millis = (long)((year - 1970) * 365.2422 * millisPerDay);
// No leap years before onset of Julian calendar
if (equivalent_millis < JULIAN_ONSET)
return false;
return (equivalent_millis > gregorianCutover) ?
((year%4 == 0) && ((year%100 != 0) || (year%400 == 0))) : // Gregorian
(year%4 == 0); // Julian
}
/**
* Overrides Calendar
* Converts UTC as milliseconds to time field values.
* The time is <em>not</em>
* recomputed first; to recompute the time, then the fields, call the
* <code>complete</code> method.
* @see Calendar#complete
*/
protected void computeFields()
{
if (areFieldsSet) return;
int gmtOffset = getTimeZone().getRawOffset();
long localMillis = time + gmtOffset;
// Time to fields takes the wall millis (Standard or DST).
timeToFields(localMillis);
int era = internalGet(Calendar.ERA);
int year = internalGet(Calendar.YEAR);
int month = internalGet(Calendar.MONTH);
int date = internalGet(Calendar.DATE);
int dayOfWeek = internalGet(Calendar.DAY_OF_WEEK);
long days = (long) (localMillis / millisPerDay);
int millisInDay = (int) (localMillis - (days * millisPerDay));
if (millisInDay < 0) millisInDay += millisPerDay;
// Call getOffset() to get the TimeZone offset. The millisInDay value must
// be standard local millis.
int dstOffset = getTimeZone().getOffset(era,year,month,date,dayOfWeek,millisInDay) -
gmtOffset;
// Adjust our millisInDay for DST, if necessary.
millisInDay += dstOffset;
// If DST has pushed us into the next day, we must call timeToFields() again.
// This happens in DST between 12:00 am and 1:00 am every day. The call to
// timeToFields() will give the wrong day, since the Standard time is in the
// previous day.
if (millisInDay >= millisPerDay)
{
millisInDay -= millisPerDay;
localMillis += dstOffset;
timeToFields(localMillis);
}
// Fill in all time-related fields based on millisInDay. Call internalSet()
// so as not to perturb flags.
internalSet(Calendar.MILLISECOND, millisInDay % 1000);
millisInDay /= 1000;
internalSet(Calendar.SECOND, millisInDay % 60);
millisInDay /= 60;
internalSet(Calendar.MINUTE, millisInDay % 60);
millisInDay /= 60;
internalSet(Calendar.HOUR_OF_DAY, millisInDay);
internalSet(Calendar.AM_PM, millisInDay / 12);
internalSet(Calendar.HOUR, millisInDay % 12);
internalSet(Calendar.ZONE_OFFSET, gmtOffset);
internalSet(Calendar.DST_OFFSET, dstOffset);
userSetZoneOffset = false;
userSetDSTOffset = false;
areFieldsSet = true;
areAllFieldsSet = true;
// Careful here: We are manually setting the isSet[] flags to true, so we
// must be sure that the above code actually does set all these fields.
for (int i=0; i<FIELD_COUNT; ++i) isSet[i] = true;
}
/**
* Return true if the current time for this Calendar is in Daylignt
* Savings Time.
*
* Note -- MAKE THIS PUBLIC AT THE NEXT API CHANGE. POSSIBLY DEPRECATE
* AND REMOVE TimeZone.inDaylightTime().
*/
boolean inDaylightTime()
{
if (!getTimeZone().useDaylightTime()) return false;
complete(); // Force update of DST_OFFSET field
return internalGet(DST_OFFSET) != 0;
}
private final int monthLength(int month, int year)
{
return isLeapYear(year) ? LEAP_MONTH_LENGTH[month] : MONTH_LENGTH[month];
}
/**
* Validates the values of the set time fields.
*/
private boolean validateFields()
{
for (int field = 0; field < FIELD_COUNT; field++)
{
// Ignore DATE and DAY_OF_YEAR which are handled below
if (field != DATE &&
field != DAY_OF_YEAR &&
isSet(field) &&
!boundsCheck(internalGet(field), field))
return false;
}
// Values differ in Least-Maximum and Maximum should be handled
// specially.
if (isSet(DATE))
{
int date = internalGet(DATE);
return (date >= getMinimum(DATE) &&
date <= monthLength(internalGet(MONTH), internalGet(YEAR)));
}
if (isSet(DAY_OF_YEAR))
{
int days = internalGet(DAY_OF_YEAR);
if (isLeapYear(internalGet(YEAR))) {
if (days < 1 || days > 366)
return false;
}
else if (days < 1 || days > 365)
return false;
}
// We only handle years back to 4716 BC (EARLIEST_USABLE_YEAR).
if (isSet(YEAR))
{
int year = internalGet(YEAR);
// Convert AD years to BC equivalents
if (!isSet(ERA) || internalGet(ERA) == AD) year = 1-year;
if (year > EARLIEST_USABLE_YEAR) return false;
}
// Handle DAY_OF_WEEK_IN_MONTH, which must not have the value zero.
// We've checked against minimum and maximum above already.
if (isSet(DAY_OF_WEEK_IN_MONTH) &&
0 == internalGet(DAY_OF_WEEK_IN_MONTH)) return false;
return true;
}
/**
* Validates the value of the given time field.
*/
private boolean boundsCheck(int value, int field)
{
return value >= getMinimum(field) && value <= getMaximum(field);
}
/**
* Overrides Calendar
* Converts time field values to UTC as milliseconds.
* @exception IllegalArgumentException if an unknown field is given.
*/
protected void computeTime()
{
if (isTimeSet) return;
// If we are lenient, we need to recompute the fields to normalize
// the values. Also, if we haven't set all the fields yet (i.e.,
// in a newly-created object), we need to fill in the fields. [LIU]
areFieldsSet = (!isLenient() && areAllFieldsSet);
if (!isLenient() && !validateFields())
throw new IllegalArgumentException();
// This function takes advantage of the fact that unset fields in
// the time field list have a value of zero.
long millis = 0;
int era;
if (isSet(ERA))
era = internalGet(ERA);
else
era = AD;
if (era < BC || era > AD)
throw new IllegalArgumentException();
// The year is required. We don't have to check if it's unset,
// because if it is, by definition it will be 0.
int year = internalGet(YEAR);
int month = 0, date = 0;
// if (year <= 0)
// throw new IllegalArgumentException();
if (era == BC)
year = 1 - year;
long julian = 0;
// The following code is somewhat convoluted. The various nested
// if's handle the different cases of what fields are present.
if (isSet(MONTH) &&
(isSet(DATE) ||
(isSet(DAY_OF_WEEK) &&
(isSet(WEEK_OF_MONTH) ||
isSet(DAY_OF_WEEK_IN_MONTH))
)
))
{
// We have the month specified. Make it 1-based for the algorithm.
month = internalGet(MONTH) + 1;
// normalize month
if (month < 1) {
year += month / 12 - 1;
month = 12 + month % 12;
} else if (month > 12) {
year += month / 12;
month = month % 12;
}
if (month > 2)
++month;
else
{
--year;
month += 13;
}
julian = (long) (Math.floor(365.25*year)
+ Math.floor(30.6001*month) + 1720995);
if (isSet(DATE))
{
date = internalGet(DATE);
}
else
{
// Compute from day of week plus week number or from the day of
// week plus the day of week in month. The computations are
// almost identical.
// The first thing we have to do is do the Gregorian adjustment,
// if necessary. We figure out the adjusted value 'j' and use
// that. We redo this later when we get the real final number.
// This double computation provides the best accuracy around the
// Gregorian cutover.
long j = julian;
if (julianDayToMillis(julian) >= gregorianCutover)
{
long adjust = (long) (0.01 * year);
j += 2 - adjust + (long) (0.25*adjust);
}
// Find the day of the week for the first of this month. This
// is zero-based, with 0 being the locale-specific first day of
// the week. Add 1 to get the 1st day of month. Subtract
// getFirstDayOfWeek() to make 0-based.
int fdm = julianDayToDayOfWeek(j + 1) - getFirstDayOfWeek();
if (fdm < 0) fdm += 7;
// Find the start of the first week. This will be a date from
// 1..-6. It represents the locale-specific first day of the
// week of the first day of the month, ignoring minimal days in
// first week.
date = 1 - fdm + internalGet(DAY_OF_WEEK) - getFirstDayOfWeek();
if (isSet(WEEK_OF_MONTH))
{
// Adjust for minimal days in first week.
if ((7 - fdm) < getMinimalDaysInFirstWeek()) date += 7;
// Now adjust for the week number.
date += 7 * (internalGet(WEEK_OF_MONTH) - 1);
}
else
{
// Adjust into the month, if needed.
if (date < 1) date += 7;
// We are basing this on the day-of-week-in-month. The only
// trickiness occurs if the day-of-week-in-month is
// negative.
int dim = internalGet(DAY_OF_WEEK_IN_MONTH);
if (dim >= 0) date += 7*(dim - 1);
else
{
// Move date to the last of this day-of-week in this
// month, then back up as needed. If dim==-1, we don't
// back up at all. If dim==-2, we back up once, etc.
// Don't back up past the first of the given day-of-week
// in this month. Note that we handle -2, -3,
// etc. correctly, even though values < -1 are
// technically disallowed.
date += ((monthLength(internalGet(MONTH), year) - date) / 7 + dim + 1) * 7;
}
}
}
julian += date;
}
else if (isSet(DAY_OF_YEAR) ||
(isSet(DAY_OF_WEEK) && (isSet(WEEK_OF_YEAR))))
{
// No month, start with January 0 (day before Jan 1), then adjust.
--year;
julian = (long) (Math.floor(365.25*year) + 428 + 1720995);
if (isSet(DAY_OF_YEAR))
julian += internalGet(DAY_OF_YEAR);
else
{
// Compute from day of week plus week of year
// The first thing we have to do is do the Gregorian adjustment,
// if necessary. We figure out the adjusted value 'j' and use
// that. We redo this later when we get the real final number.
// This double computation provides the best accuracy around the
// Gregorian cutover.
long j = julian;
if (julianDayToMillis(julian) >= gregorianCutover)
{
long adjust = (long) (0.01 * year);
j += 2 - adjust + (long) (0.25*adjust);
}
// Find the day of the week for the first of this year. This
// is zero-based, with 0 being the locale-specific first day of
// the week. Add 1 to get the 1st day of month. Subtract
// getFirstDayOfWeek() to make 0-based.
int fdy = julianDayToDayOfWeek(j + 1) - getFirstDayOfWeek();
if (fdy < 0) fdy += 7;
// Find the start of the first week. This may be a valid date
// from 1..7, or a date before the first, from 0..-6. It
// represents the locale-specific first day of the week
// of the first day of the year.
// First ignore the minimal days in first week.
date = 1 - fdy + internalGet(DAY_OF_WEEK) - getFirstDayOfWeek();
// Adjust for minimal days in first week.
if ((7 - fdy) < getMinimalDaysInFirstWeek()) date += 7;
// Now adjust for the week number.
date += 7 * (internalGet(WEEK_OF_YEAR) - 1);
julian += date;
}
}
else { // Not enough information
throw new IllegalArgumentException();
}
// Now adjust for Gregorian if necessary. Note that dates that fall in
// the "gap" between the Julian and Gregorian calendars will be treated
// as Gregorian. Strictly speaking, they're illegal.
millis = julianDayToMillis(julian);
if (millis >= gregorianCutover)
{
long adjust = (long) (0.01 * year);
julian += 2 - adjust + (long) (0.25*adjust);
millis = julianDayToMillis(julian);
}
// Now we can do the time portion of the conversion.
int millisInDay = 0;
// Hours
if (isSet(HOUR_OF_DAY))
// Don't normalize here; let overflow bump into the next period.
// This is consistent with how we handle other fields.
millisInDay += internalGet(HOUR_OF_DAY);
else if (isSet(HOUR))
{
// Don't normalize here; let overflow bump into the next period.
// This is consistent with how we handle other fields.
millisInDay += internalGet(HOUR);
millisInDay += 12 * internalGet(AM_PM);
}
// Minutes. We use the fact that unset == 0
millisInDay *= 60;
millisInDay += internalGet(MINUTE);
// Seconds. unset == 0
millisInDay *= 60;
millisInDay += internalGet(SECOND);
// Milliseconds. unset == 0
millisInDay *= 1000;
millisInDay += internalGet(MILLISECOND);
// Compute the time zone offset and DST offset. There are two potential
// ambiguities here. We'll assume a 2:00 am (wall time) switchover time
// for discussion purposes here.
// 1. The transition into DST. Here, a designated time of 2:00 am - 2:59 am
// can be in standard or in DST depending. However, 2:00 am is an invalid
// representation (the representation jumps from 1:59:59 am Std to 3:00:00 am DST).
// We assume standard time.
// 2. The transition out of DST. Here, a designated time of 1:00 am - 1:59 am
// can be in standard or DST. Both are valid representations (the rep
// jumps from 1:59:59 DST to 1:00:00 Std).
// Again, we assume standard time.
// We use the TimeZone object, unless the user has explicitly set the ZONE_OFFSET
// or DST_OFFSET fields; then we use those fields.
TimeZone zone = getTimeZone();
int zoneOffset = (isSet(ZONE_OFFSET) && userSetZoneOffset) ?
internalGet(ZONE_OFFSET) : zone.getRawOffset();
// Now add date and millisInDay together, to make millis contain local wall
// millis, with no zone or DST adjustments
millis += millisInDay;
int dstOffset = 0;
if (isSet(DST_OFFSET) && userSetDSTOffset) dstOffset = internalGet(DST_OFFSET);
else
{
// We need to have the month, the day, and the day of the week.
// Calling timeToFields will compute the MONTH and DATE fields.
if (!isSet(MONTH) || !isSet(DATE))
timeToFields(millis); // Right - use wall time here
// It's tempting to try to use DAY_OF_WEEK here, if it
// is set, but we CAN'T. Even if it's set, it might have
// been set wrong by the user. We should rely only on
// the Julian day number, which has been computed correctly
// using the disambiguation algorithm above. [LIU]
dstOffset = zone.getOffset(era,
internalGet(YEAR),
internalGet(MONTH),
internalGet(DATE),
julianDayToDayOfWeek(julian),
millisInDay) -
zoneOffset;
// Note: Because we pass in wall millisInDay, rather than
// standard millisInDay, we interpret "1:00 am" on the day
// of cessation of DST as "1:00 am Std" (assuming the time
// of cessation is 2:00 am).
}
// Store our final computed GMT time, with timezone adjustments.
time = millis - zoneOffset - dstOffset;
isTimeSet = true;
}
/**
* Override hashCode.
* Generates the hash code for the GregorianCalendar object
*/
public synchronized int hashCode()
{
return getFirstDayOfWeek() ^ getMinimalDaysInFirstWeek();
}
/**
* Overrides Calendar
* Compares the time field records.
* Equivalent to comparing result of conversion to UTC.
* Please see Calendar.equals for descriptions on parameters and
* the return value.
*/
public boolean equals(Object obj)
{
if (this == obj)
return true;
if (!(obj instanceof GregorianCalendar))
return false;
GregorianCalendar that = (GregorianCalendar) obj;
return
getTimeInMillis() == that.getTimeInMillis() &&
isLenient() == that.isLenient() &&
getFirstDayOfWeek() == that.getFirstDayOfWeek() &&
getMinimalDaysInFirstWeek() == that.getMinimalDaysInFirstWeek() &&
getTimeZone().equals(that.getTimeZone());
}
/**
* Overrides Calendar
* Compares the time field records.
* Equivalent to comparing result of conversion to UTC.
* Please see Calendar.before for descriptions on parameters and
* the return value.
*/
public boolean before(Object when)
{
if (this == when ||
when == null ||
!(when instanceof GregorianCalendar)) return false;
GregorianCalendar other = (GregorianCalendar)when;
return (getTimeInMillis() < other.getTimeInMillis());
}
/**
* Overrides Calendar
* Compares the time field records.
* Equivalent to comparing result of conversion to UTC.
* Please see Calendar.after for descriptions on parameters and
* the return value.
*/
public boolean after(Object when)
{
if (this == when ||
when == null ||
!(when instanceof GregorianCalendar)) return false;
GregorianCalendar other = (GregorianCalendar)when;
return (getTimeInMillis() > other.getTimeInMillis());
}
/**
* Overrides Calendar
* Date Arithmetic function.
* Adds the specified (signed) amount of time to the given time field,
* based on the calendar's rules.
* @param field the time field.
* @param amount the amount of date or time to be added to the field.
* @exception IllegalArgumentException if an unknown field is given.
*/
public void add(int field, int amount)
{
if (amount == 0) return; // Do nothing!
complete();
if (field == Calendar.YEAR)
{
int year = this.internalGet(Calendar.YEAR);
if (this.internalGet(Calendar.ERA) == GregorianCalendar.AD)
{
year += amount;
if (year > 0)
this.set(Calendar.YEAR, year);
else // year <= 0
{
this.set(Calendar.YEAR, 1 - year);
// if year == 0, you get 1 BC
this.set(Calendar.ERA, GregorianCalendar.BC);
}
}
else // era == BC
{
year -= amount;
if (year > 0)
this.set(Calendar.YEAR, year);
else // year <= 0
{
this.set(Calendar.YEAR, 1 - year);
// if year == 0, you get 1 AD
this.set(Calendar.ERA, GregorianCalendar.AD);
}
}
}
else if (field == Calendar.MONTH)
{
int month = this.internalGet(Calendar.MONTH) + amount;
if (month >= 0)
{
add(Calendar.YEAR, (int) (month / 12));
set(Calendar.MONTH, (int) (month % 12));
}
else // month < 0
{
add(Calendar.YEAR, (int) ((month + 1) / 12) - 1);
month %= 12;
if (month < 0) month += 12;
set(MONTH, JANUARY + month);
}
}
else if (field == ERA)
{
int era = internalGet(ERA) + amount;
if (era < 0) era = 0;
if (era > 1) era = 1;
set(ERA, era);
}
else
{
// We handle most fields here. The algorithm is to add a computed amount
// of millis to the current millis. The only wrinkle is with DST -- if
// the result of the add operation is to move from DST to Standard, or vice
// versa, we need to adjust by an hour forward or back, respectively.
// Otherwise you get weird effects in which the hour seems to shift when
// you add to the DAY_OF_MONTH field, for instance.
// Save the current DST state.
long dst = internalGet(DST_OFFSET);
long delta = amount;
switch (field)
{
case Calendar.WEEK_OF_YEAR:
case Calendar.WEEK_OF_MONTH:
case Calendar.DAY_OF_WEEK_IN_MONTH:
delta *= 7 * 24 * 60 * 60 * 1000; // 7 days
break;
case Calendar.AM_PM:
delta *= 12 * 60 * 60 * 1000; // 12 hrs
break;
case Calendar.DATE: // synonym of DAY_OF_MONTH
case Calendar.DAY_OF_YEAR:
case Calendar.DAY_OF_WEEK:
delta *= 24 * 60 * 60 * 1000; // 1 day
break;
case Calendar.HOUR_OF_DAY:
case Calendar.HOUR:
delta *= 60 * 60 * 1000; // 1 hour
break;
case Calendar.MINUTE:
delta *= 60 * 1000; // 1 minute
break;
case Calendar.SECOND:
delta *= 1000; // 1 second
break;
case MILLISECOND:
// Simply break out on MILLISECOND
break;
case ZONE_OFFSET:
case DST_OFFSET:
default:
throw new IllegalArgumentException();
}
setTimeInMillis(time + delta); // Automatically computes fields if necessary
// Now do the DST adjustment alluded to above.
// Only call setTimeInMillis if necessary, because it's an expensive call.
dst -= internalGet(DST_OFFSET);
if (delta != 0) setTimeInMillis(time + dst);
}
}
/**
* Overrides Calendar
* Time Field Rolling function.
* Rolls (up/down) a single unit of time on the given time field.
* @param field the time field.
* @param up Indicates if rolling up or rolling down the field value.
* @exception IllegalArgumentException if an unknown field value is given.
*/
public void roll(int field, boolean up)
{
roll(field, up ? +1 : -1);
}
/**
* Roll a field by a signed amount.
* Note: This will be made public later. [LIU]
*/
void roll(int field, int amount)
{
if (amount == 0) return; // Nothing to do
complete();
int min = getMinimum(field);
int max = getMaximum(field);
int gap;
switch (field) {
case ERA:
case YEAR:
case MONTH:
case AM_PM:
case HOUR:
case HOUR_OF_DAY:
case MINUTE:
case SECOND:
case MILLISECOND:
// These fields are handled simply, since they have fixed minima
// and maxima. The field DAY_OF_MONTH is almost as simple. Other
// fields are complicated, since the range within they must roll
// varies depending on the date.
break;
case WEEK_OF_YEAR:
{
// This follows the outline of WEEK_OF_MONTH, except it applies
// to the whole year. Please see the comment for WEEK_OF_MONTH
// for general notes.
// Normalize the DAY_OF_WEEK so that 0 is the first day of the week
// in this locale. We have dow in 0..6.
int dow = internalGet(DAY_OF_WEEK) - getFirstDayOfWeek();
if (dow < 0) dow += 7;
// Find the day of the week (normalized for locale) for the first
// of the year.
int fdy = (dow - internalGet(DAY_OF_YEAR) + 1) % 7;
if (fdy < 0) fdy += 7;
// Get the first day of the first full week of the year,
// including phantom days, if any. Figure out if the first week
// counts or not; if it counts, then fill in phantom days. If
// not, advance to the first real full week (skip the partial week).
int start;
if ((7 - fdy) < getMinimalDaysInFirstWeek())
start = 8 - fdy; // Skip the first partial week
else
start = 1 - fdy; // This may be zero or negative
// Get the day of the week (normalized for locale) for the last
// day of the year.
int yearLen = isLeapYear(internalGet(YEAR)) ? 366 : 365;
int ldy = (yearLen - internalGet(DAY_OF_YEAR) + dow) % 7;
// We know yearLen >= DAY_OF_YEAR so we skip the += 7 step here.
// Get the limit day for the blocked-off rectangular year; that
// is, the day which is one past the last day of the year,
// after the year has already been filled in with phantom days
// to fill out the last week. This day has a normalized DOW of 0.
int limit = yearLen + 7 - ldy;
// Now roll between start and (limit - 1).
gap = limit - start;
int day_of_year = (internalGet(DAY_OF_YEAR) + amount*7 -
start) % gap;
if (day_of_year < 0) day_of_year += gap;
day_of_year += start;
// Finally, pin to the real start and end of the month.
if (day_of_year < 1) day_of_year = 1;
if (day_of_year > yearLen) day_of_year = yearLen;
// Make sure that the year and day of year are attended to by
// clearing other fields which would normally take precedence.
// If the disambiguation algorithm is changed, this section will
// have to be updated as well.
set(DAY_OF_YEAR, day_of_year);
clear(MONTH);
return;
}
case WEEK_OF_MONTH:
{
// This is tricky, because during the roll we may have to shift
// to a different day of the week. For example:
// s m t w r f s
// 1 2 3 4 5
// 6 7 8 9 10 11 12
// When rolling from the 6th or 7th back one week, we go to the
// 1st (assuming that the first partial week counts). The same
// thing happens at the end of the month.
// The other tricky thing is that we have to figure out whether
// the first partial week actually counts or not, based on the
// minimal first days in the week. And we have to use the
// correct first day of the week to delineate the week
// boundaries.
// Here's our algorithm. First, we find the real boundaries of
// the month. Then we discard the first partial week if it
// doesn't count in this locale. Then we fill in the ends with
// phantom days, so that the first partial week and the last
// partial week are full weeks. We then have a nice square
// block of weeks. We do the usual rolling within this block,
// as is done elsewhere in this method. If we wind up on one of
// the phantom days that we added, we recognize this and pin to
// the first or the last day of the month. Easy, eh?
// Normalize the DAY_OF_WEEK so that 0 is the first day of the week
// in this locale. We have dow in 0..6.
int dow = internalGet(DAY_OF_WEEK) - getFirstDayOfWeek();
if (dow < 0) dow += 7;
// Find the day of the week (normalized for locale) for the first
// of the month.
int fdm = (dow - internalGet(DAY_OF_MONTH) + 1) % 7;
if (fdm < 0) fdm += 7;
// Get the first day of the first full week of the month,
// including phantom days, if any. Figure out if the first week
// counts or not; if it counts, then fill in phantom days. If
// not, advance to the first real full week (skip the partial week).
int start;
if ((7 - fdm) < getMinimalDaysInFirstWeek())
start = 8 - fdm; // Skip the first partial week
else
start = 1 - fdm; // This may be zero or negative
// Get the day of the week (normalized for locale) for the last
// day of the month.
int monthLen = monthLength(internalGet(MONTH), internalGet(YEAR));
int ldm = (monthLen - internalGet(DAY_OF_MONTH) + dow) % 7;
// We know monthLen >= DAY_OF_MONTH so we skip the += 7 step here.
// Get the limit day for the blocked-off rectangular month; that
// is, the day which is one past the last day of the month,
// after the month has already been filled in with phantom days
// to fill out the last week. This day has a normalized DOW of 0.
int limit = monthLen + 7 - ldm;
// Now roll between start and (limit - 1).
gap = limit - start;
int day_of_month = (internalGet(DAY_OF_MONTH) + amount*7 -
start) % gap;
if (day_of_month < 0) day_of_month += gap;
day_of_month += start;
// Finally, pin to the real start and end of the month.
if (day_of_month < 1) day_of_month = 1;
if (day_of_month > monthLen) day_of_month = monthLen;
// Set the DAY_OF_MONTH. We rely on the fact that this field
// takes precedence over everything else (since all other fields
// are also set at this point). If this fact changes (if the
// disambiguation algorithm changes) then we will have to unset
// the appropriate fields here so that DAY_OF_MONTH is attended
// to.
set(DAY_OF_MONTH, day_of_month);
return;
}
case DAY_OF_MONTH:
max = monthLength(internalGet(MONTH), internalGet(YEAR));
break;
case DAY_OF_YEAR:
{
// Roll the day of year using millis. Compute the millis for
// the start of the year, and get the length of the year.
long delta = amount * ONE_DAY; // Scale up from days to millis
long min2 = time - (internalGet(DAY_OF_YEAR) - 1) * ONE_DAY;
int yearLength = isLeapYear(internalGet(YEAR)) ? 366 : 365;
time = (time + delta - min2) % (yearLength*ONE_DAY);
if (time < 0) time += yearLength*ONE_DAY;
setTimeInMillis(time + min2);
return;
}
case DAY_OF_WEEK:
{
// Roll the day of week using millis. Compute the millis for
// the start of the week, using the first day of week setting.
// Restrict the millis to [start, start+7days).
long delta = amount * ONE_DAY; // Scale up from days to millis
// Compute the number of days before the current day in this
// week. This will be a value 0..6.
int leadDays = internalGet(DAY_OF_WEEK) - getFirstDayOfWeek();
if (leadDays < 0) leadDays += 7;
long min2 = time - leadDays * ONE_DAY;
time = (time + delta - min2) % ONE_WEEK;
if (time < 0) time += ONE_WEEK;
setTimeInMillis(time + min2);
return;
}
case DAY_OF_WEEK_IN_MONTH:
{
// Roll the day of week in the month using millis. Determine
// the first day of the week in the month, and then the last,
// and then roll within that range.
long delta = amount * ONE_WEEK; // Scale up from weeks to millis
// Find the number of same days of the week before this one
// in this month.
int preWeeks = (internalGet(DAY_OF_MONTH) - 1) / 7;
// Find the number of same days of the week after this one
// in this month.
int postWeeks = (monthLength(internalGet(MONTH), internalGet(YEAR)) -
internalGet(DAY_OF_MONTH)) / 7;
// From these compute the min and gap millis for rolling.
long min2 = time - preWeeks * ONE_WEEK;
long gap2 = ONE_WEEK * (preWeeks + postWeeks + 1); // Must add 1!
// Roll within this range
time = (time + delta - min2) % gap2;
if (time < 0) time += gap2;
setTimeInMillis(time + min2);
return;
}
case ZONE_OFFSET:
case DST_OFFSET:
default:
// These fields cannot be rolled
throw new IllegalArgumentException();
}
// These are the standard roll instructions. These work for all
// simple cases, that is, cases in which the limits are fixed, such
// as the hour, the month, and the era.
gap = max - min + 1;
int value = internalGet(field) + amount;
value = (value - min) % gap;
if (value < 0) value += gap;
value += min;
set(field, value);
}
/**
* <pre>
* Field names Minimum Greatest Minimum Least Maximum Maximum
* ----------- ------- ---------------- ------------- -------
* ERA 0 0 1 1
* YEAR 1 1 5,000,000 5,000,000
* MONTH 0 0 11 11
* WEEK_OF_YEAR 0 0 53 54
* WEEK_OF_MONTH 0 0 4 6
* DAY_OF_MONTH 1 1 28 31
* DAY_OF_YEAR 1 1 365 366
* DAY_OF_WEEK 1 1 7 7
* DAY_OF_WEEK_IN_MONTH -1 -1 4 6
* AM_PM 0 0 1 1
* HOUR 0 0 11 12
* HOUR_OF_DAY 0 0 23 23
* MINUTE 0 0 59 59
* SECOND 0 0 59 59
* MILLISECOND 0 0 999 999
* ZONE_OFFSET -12*60*60*1000 -12*60*60*1000 12*60*60*1000 12*60*60*1000
* DST_OFFSET 0 0 1*60*60*1000 1*60*60*1000
* </pre>
*/
private static final int MinValues[]
= {0,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,-12*60*60*1000,0};
private static final int GreatestMinValues[]
= {0,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,-12*60*60*1000,0};// same as MinValues
private static final int LeastMaxValues[]
= {1,5000000,11,53,4,28,365,7,4,1,11,23,59,59,999,
12*60*60*1000,1*60*60*1000};
private static final int MaxValues[]
= {1,5000000,11,54,6,31,366,7,6,1,12,23,59,59,999,
12*60*60*1000,1*60*60*1000};
/**
* Returns minimum value for the given field.
* e.g. for Gregorian DAY_OF_MONTH, 1
* Please see Calendar.getMinimum for descriptions on parameters and
* the return value.
*/
public int getMinimum(int field)
{
return MinValues[field];
}
/**
* Returns maximum value for the given field.
* e.g. for Gregorian DAY_OF_MONTH, 31
* Please see Calendar.getMaximum for descriptions on parameters and
* the return value.
*/
public int getMaximum(int field)
{
return MaxValues[field];
}
/**
* Returns highest minimum value for the given field if varies.
* Otherwise same as getMinimum(). For Gregorian, no difference.
* Please see Calendar.getGreatestMinimum for descriptions on parameters
* and the return value.
*/
public int getGreatestMinimum(int field)
{
return GreatestMinValues[field];
}
/**
* Returns lowest maximum value for the given field if varies.
* Otherwise same as getMaximum(). For Gregorian DAY_OF_MONTH, 28
* Please see Calendar.getLeastMaximum for descriptions on parameters and
* the return value.
*/
public int getLeastMaximum(int field)
{
return LeastMaxValues[field];
}
// Useful millisecond constants
private static final long ONE_SECOND = 1000;
private static final long ONE_MINUTE = 60*ONE_SECOND;
private static final long ONE_HOUR = 60*ONE_MINUTE;
private static final long ONE_DAY = 24*ONE_HOUR;
private static final long ONE_WEEK = 7*ONE_DAY;
// Proclaim serialization compatiblity with JDK 1.1
static final long serialVersionUID = -8125100834729963327L;
}