All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java.util.SimpleTimeZone Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
/*

This is not an official specification document, and usage is restricted.

NOTICE


(c) 2005-2007 Sun Microsystems, Inc. All Rights Reserved.

Neither this file nor any files generated from it describe a complete specification, and they may only be used as described below. For example, no permission is given for you to incorporate this file, in whole or in part, in an implementation of a Java specification.

Sun Microsystems Inc. owns the copyright in this file and it is provided to you for informative, as opposed to normative, use. The file and any files generated from it may be used to generate other informative documentation, such as a unified set of documents of API signatures for a platform that includes technologies expressed as Java APIs. The file may also be used to produce "compilation stubs," which allow applications to be compiled and validated for such platforms.

Any work generated from this file, such as unified javadocs or compiled stub files, must be accompanied by this notice in its entirety.

This work corresponds to the API signatures of JSR 219: Foundation Profile 1.1. In the event of a discrepency between this work and the JSR 219 specification, which is available at http://www.jcp.org/en/jsr/detail?id=219, the latter takes precedence. */ package java.util; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; import java.io.IOException; /** * SimpleTimeZone is a concrete subclass of TimeZone * that represents a time zone for use with a Gregorian calendar. * The class holds an offset from GMT, called raw offset, and start * and end rules for a daylight saving time schedule. Since it only holds * single values for each, it cannot handle historical changes in the offset * from GMT and the daylight saving schedule, except that the {@link * #setStartYear setStartYear} method can specify the year when the daylight * saving time schedule starts in effect. *

* To construct a SimpleTimeZone with a daylight saving time * schedule, the schedule can be described with a set of rules, * start-rule and end-rule. A day when daylight saving time * starts or ends is specified by a combination of month, * day-of-month, and day-of-week values. The month * value is represented by a Calendar {@link Calendar#MONTH MONTH} field * value, such as {@link Calendar#MARCH}. The day-of-week value is * represented by a Calendar {@link Calendar#DAY_OF_WEEK DAY_OF_WEEK} value, * such as {@link Calendar#SUNDAY SUNDAY}. The meanings of value combinations * are as follows. * *

    *
  • Exact day of month
    * To specify an exact day of month, set the month and * day-of-month to an exact value, and day-of-week to zero. For * example, to specify March 1, set the month to {@link Calendar#MARCH * MARCH}, day-of-month to 1, and day-of-week to 0.
  • * *
  • Day of week on or after day of month
    * To specify a day of week on or after an exact day of month, set the * month to an exact month value, day-of-month to the day on * or after which the rule is applied, and day-of-week to a {@link * Calendar#DAY_OF_WEEK DAY_OF_WEEK} field value. For example, to specify the * second Sunday of April, set month to {@link Calendar#APRIL APRIL}, * day-of-month to 8, and day-of-week to {@link * Calendar#SUNDAY SUNDAY}.
  • * *
  • Day of week on or before day of month
    * To specify a day of the week on or before an exact day of the month, set * day-of-month and day-of-week to a negative value. For * example, to specify the last Wednesday on or before the 21st of March, set * month to {@link Calendar#MARCH MARCH}, day-of-month is -21 * and day-of-week is {@link Calendar#WEDNESDAY -WEDNESDAY}.
  • * *
  • Last day-of-week of month
    * To specify, the last day-of-week of the month, set day-of-week to a * {@link Calendar#DAY_OF_WEEK DAY_OF_WEEK} value and day-of-month to * -1. For example, to specify the last Sunday of October, set month * to {@link Calendar#OCTOBER OCTOBER}, day-of-week to {@link * Calendar#SUNDAY SUNDAY} and day-of-month to -1.
  • * *
* The time of the day at which daylight saving time starts or ends is * specified by a millisecond value within the day. There are three kinds of * modes to specify the time: {@link #WALL_TIME}, {@link * #STANDARD_TIME} and {@link #UTC_TIME}. For example, if daylight * saving time ends * at 2:00 am in the wall clock time, it can be specified by 7200000 * milliseconds in the {@link #WALL_TIME} mode. In this case, the wall clock time * for an end-rule means the same thing as the daylight time. *

* The following are examples of parameters for constructing time zone objects. *


 *      // Base GMT offset: -8:00
 *      // DST starts:      at 2:00am in standard time
 *      //                  on the first Sunday in April
 *      // DST ends:        at 2:00am in daylight time
 *      //                  on the last Sunday in October
 *      // Save:            1 hour
 *      SimpleTimeZone(-28800000,
 *                     "America/Los_Angeles",
 *                     Calendar.APRIL, 1, -Calendar.SUNDAY,
 *                     7200000,
 *                     Calendar.OCTOBER, -1, Calendar.SUNDAY,
 *                     7200000,
 *                     3600000)
 *
 *      // Base GMT offset: +1:00
 *      // DST starts:      at 1:00am in UTC time
 *      //                  on the last Sunday in March
 *      // DST ends:        at 1:00am in UTC time
 *      //                  on the last Sunday in October
 *      // Save:            1 hour
 *      SimpleTimeZone(3600000,
 *                     "Europe/Paris",
 *                     Calendar.MARCH, -1, Calendar.SUNDAY,
 *                     3600000, SimpleTimeZone.UTC_TIME,
 *                     Calendar.OCTOBER, -1, Calendar.SUNDAY,
 *                     3600000, SimpleTimeZone.UTC_TIME,
 *                     3600000)
 * 
* These parameter rules are also applicable to the set rule methods, such as * setStartRule. * * @since 1.1 * @see Calendar * @see GregorianCalendar * @see TimeZone * @version 1.45, 10/25/05 * @author David Goldsmith, Mark Davis, Chen-Lieh Huang, Alan Liu */ public class SimpleTimeZone extends TimeZone { /** * Constant for a mode of start or end time specified as wall clock * time. Wall clock time is standard time for the onset rule, and * daylight time for the end rule. * @since 1.4 */ public static final int WALL_TIME = 0; /** * Constant for a mode of start or end time specified as standard time. * @since 1.4 */ public static final int STANDARD_TIME = 1; /** * Constant for a mode of start or end time specified as UTC. European * Union rules are specified as UTC time, for example. * @since 1.4 */ public static final int UTC_TIME = 2; /** * The month in which daylight saving time starts. This value must be * between Calendar.JANUARY and * Calendar.DECEMBER inclusive. This value must not equal * endMonth. *

If useDaylight is false, this value is ignored. * @serial */ private int startMonth; /** * This field has two possible interpretations: *

*
startMode == DOW_IN_MONTH
*
* startDay indicates the day of the month of * startMonth on which daylight * saving time starts, from 1 to 28, 30, or 31, depending on the * startMonth. *
*
startMode != DOW_IN_MONTH
*
* startDay indicates which startDayOfWeek in th * month startMonth daylight * saving time starts on. For example, a value of +1 and a * startDayOfWeek of Calendar.SUNDAY indicates the * first Sunday of startMonth. Likewise, +2 would indicate the * second Sunday, and -1 the last Sunday. A value of 0 is illegal. *
* *

If useDaylight is false, this value is ignored. * @serial */ private int startDay; /** * The day of the week on which daylight saving time starts. This value * must be between Calendar.SUNDAY and * Calendar.SATURDAY inclusive. *

If useDaylight is false or * startMode == DAY_OF_MONTH, this value is ignored. * @serial */ private int startDayOfWeek; /** * The time in milliseconds after midnight at which daylight saving * time starts. This value is expressed as wall time, standard time, * or UTC time, depending on the setting of startTimeMode. *

If useDaylight is false, this value is ignored. * @serial */ private int startTime; /** * The format of startTime, either WALL_TIME, STANDARD_TIME, or UTC_TIME. * @serial * @since 1.3 */ private int startTimeMode; /** * The month in which daylight saving time ends. This value must be * between Calendar.JANUARY and * Calendar.UNDECIMBER. This value must not equal * startMonth. *

If useDaylight is false, this value is ignored. * @serial */ private int endMonth; /** * This field has two possible interpretations: *

*
endMode == DOW_IN_MONTH
*
* endDay indicates the day of the month of * endMonth on which daylight * saving time ends, from 1 to 28, 30, or 31, depending on the * endMonth. *
*
endMode != DOW_IN_MONTH
*
* endDay indicates which endDayOfWeek in th * month endMonth daylight * saving time ends on. For example, a value of +1 and a * endDayOfWeek of Calendar.SUNDAY indicates the * first Sunday of endMonth. Likewise, +2 would indicate the * second Sunday, and -1 the last Sunday. A value of 0 is illegal. *
* *

If useDaylight is false, this value is ignored. * @serial */ private int endDay; /** * The day of the week on which daylight saving time ends. This value * must be between Calendar.SUNDAY and * Calendar.SATURDAY inclusive. *

If useDaylight is false or * endMode == DAY_OF_MONTH, this value is ignored. * @serial */ private int endDayOfWeek; /** * The time in milliseconds after midnight at which daylight saving * time ends. This value is expressed as wall time, standard time, * or UTC time, depending on the setting of endTimeMode. *

If useDaylight is false, this value is ignored. * @serial */ private int endTime; /** * The format of endTime, either WALL_TIME, STANDARD_TIME, or UTC_TIME. * @serial * @since 1.3 */ private int endTimeMode; /** * The year in which daylight saving time is first observed. This is an AD * value. If this value is less than 1 then daylight saving time is observed * for all AD years. *

If useDaylight is false, this value is ignored. * @serial */ private int startYear; /** * The offset in milliseconds between this zone and GMT. Negative offsets * are to the west of Greenwich. To obtain local standard time, * add the offset to GMT time. To obtain local wall time it may also be * necessary to add dstSavings. * @serial */ private int rawOffset; /** * A boolean value which is true if and only if this zone uses daylight * saving time. If this value is false, several other fields are ignored. * @serial */ private boolean useDaylight; /** * This field was serialized in JDK 1.1, so we have to keep it that way * to maintain serialization compatibility. However, there's no need to * recreate the array each time we create a new time zone. * @serial An array of bytes containing the values {31, 28, 31, 30, 31, 30, * 31, 31, 30, 31, 30, 31}. This is ignored as of the Java 2 platform v1.2, however, it must * be streamed out for compatibility with JDK 1.1. */ private final byte[] monthLength = null; /** * Variables specifying the mode of the start rule. Takes the following * values: *

*
DOM_MODE
*
* Exact day of week; e.g., March 1. *
*
DOW_IN_MONTH_MODE
*
* Day of week in month; e.g., last Sunday in March. *
*
DOW_GE_DOM_MODE
*
* Day of week after day of month; e.g., Sunday on or after March 15. *
*
DOW_LE_DOM_MODE
*
* Day of week before day of month; e.g., Sunday on or before March 15. *
*
* The setting of this field affects the interpretation of the * startDay field. *

If useDaylight is false, this value is ignored. * @serial * @since 1.1.4 */ private int startMode; /** * Variables specifying the mode of the end rule. Takes the following * values: *

*
DOM_MODE
*
* Exact day of week; e.g., March 1. *
*
DOW_IN_MONTH_MODE
*
* Day of week in month; e.g., last Sunday in March. *
*
DOW_GE_DOM_MODE
*
* Day of week after day of month; e.g., Sunday on or after March 15. *
*
DOW_LE_DOM_MODE
*
* Day of week before day of month; e.g., Sunday on or before March 15. *
*
* The setting of this field affects the interpretation of the * endDay field. *

If useDaylight is false, this value is ignored. * @serial * @since 1.1.4 */ private int endMode; /** * A positive value indicating the amount of time saved during DST in * milliseconds. * Typically one hour (3600000); sometimes 30 minutes (1800000). *

If useDaylight is false, this value is ignored. * @serial * @since 1.1.4 */ private int dstSavings; /** * The version of the serialized data on the stream. Possible values: *

*
0 or not present on stream
*
* JDK 1.1.3 or earlier. *
*
1
*
* JDK 1.1.4 or later. Includes three new fields: startMode, * endMode, and dstSavings. *
*
2
*
* JDK 1.3 or later. Includes two new fields: startTimeMode * and endTimeMode. *
*
* When streaming out this class, the most recent format * and the highest allowable serialVersionOnStream * is written. * @serial * @since 1.1.4 */ private int serialVersionOnStream; static final long serialVersionUID = -403250971215465050L; /** * Constructs a SimpleTimeZone with the given base time zone offset from GMT * and time zone ID with no daylight saving time schedule. * * @param rawOffset The base time zone offset in milliseconds to GMT. * @param ID The time zone name that is given to this instance. */ public SimpleTimeZone(int rawOffset, String ID) { } /** * Constructs a SimpleTimeZone with the given base time zone offset from * GMT, time zone ID, and rules for starting and ending the daylight * time. * Both startTime and endTime are specified to be * represented in the wall clock time. The amount of daylight saving is * assumed to be 3600000 milliseconds (i.e., one hour). This constructor is * equivalent to: *

     *     SimpleTimeZone(rawOffset,
     *                    ID,
     *                    startMonth,
     *                    startDay,
     *                    startDayOfWeek,
     *                    startTime,
     *                    SimpleTimeZone.{@link #WALL_TIME},
     *                    endMonth,
     *                    endDay,
     *                    endDayOfWeek,
     *                    endTime,
     *                    SimpleTimeZone.{@link #WALL_TIME},
     *                    3600000)
     * 
* * @param rawOffset The given base time zone offset from GMT. * @param ID The time zone ID which is given to this object. * @param startMonth The daylight saving time starting month. Month is * a {@link Calendar#MONTH MONTH} field value (0-based. e.g., 0 * for January). * @param startDay The day of the month on which the daylight saving time starts. * See the class description for the special cases of this parameter. * @param startDayOfWeek The daylight saving time starting day-of-week. * See the class description for the special cases of this parameter. * @param startTime The daylight saving time starting time in local wall clock * time (in milliseconds within the day), which is local * standard time in this case. * @param endMonth The daylight saving time ending month. Month is * a {@link Calendar#MONTH MONTH} field * value (0-based. e.g., 9 for October). * @param endDay The day of the month on which the daylight saving time ends. * See the class description for the special cases of this parameter. * @param endDayOfWeek The daylight saving time ending day-of-week. * See the class description for the special cases of this parameter. * @param endTime The daylight saving ending time in local wall clock time, * (in milliseconds within the day) which is local daylight * time in this case. * @exception IllegalArgumentException if the month, day, dayOfWeek, or time * parameters are out of range for the start or end rule */ public SimpleTimeZone(int rawOffset, String ID, int startMonth, int startDay, int startDayOfWeek, int startTime, int endMonth, int endDay, int endDayOfWeek, int endTime) { } /** * Constructs a SimpleTimeZone with the given base time zone offset from * GMT, time zone ID, and rules for starting and ending the daylight * time. * Both startTime and endTime are assumed to be * represented in the wall clock time. This constructor is equivalent to: *

     *     SimpleTimeZone(rawOffset,
     *                    ID,
     *                    startMonth,
     *                    startDay,
     *                    startDayOfWeek,
     *                    startTime,
     *                    SimpleTimeZone.{@link #WALL_TIME},
     *                    endMonth,
     *                    endDay,
     *                    endDayOfWeek,
     *                    endTime,
     *                    SimpleTimeZone.{@link #WALL_TIME},
     *                    dstSavings)
     * 
* * @param rawOffset The given base time zone offset from GMT. * @param ID The time zone ID which is given to this object. * @param startMonth The daylight saving time starting month. Month is * a {@link Calendar#MONTH MONTH} field * value (0-based. e.g., 0 for January). * @param startDay The day of the month on which the daylight saving time starts. * See the class description for the special cases of this parameter. * @param startDayOfWeek The daylight saving time starting day-of-week. * See the class description for the special cases of this parameter. * @param startTime The daylight saving time starting time in local wall clock * time, which is local standard time in this case. * @param endMonth The daylight saving time ending month. Month is * a {@link Calendar#MONTH MONTH} field * value (0-based. e.g., 9 for October). * @param endDay The day of the month on which the daylight saving time ends. * See the class description for the special cases of this parameter. * @param endDayOfWeek The daylight saving time ending day-of-week. * See the class description for the special cases of this parameter. * @param endTime The daylight saving ending time in local wall clock time, * which is local daylight time in this case. * @param dstSavings The amount of time in milliseconds saved during * daylight saving time. * @exception IllegalArgumentException if the month, day, dayOfWeek, or time * parameters are out of range for the start or end rule * @since 1.2 */ public SimpleTimeZone(int rawOffset, String ID, int startMonth, int startDay, int startDayOfWeek, int startTime, int endMonth, int endDay, int endDayOfWeek, int endTime, int dstSavings) { } /** * Constructs a SimpleTimeZone with the given base time zone offset from * GMT, time zone ID, and rules for starting and ending the daylight * time. * This constructor takes the full set of the start and end rules * parameters, including modes of startTime and * endTime. The mode specifies either {@link #WALL_TIME wall * time} or {@link #STANDARD_TIME standard time} or {@link #UTC_TIME UTC * time}. * * @param rawOffset The given base time zone offset from GMT. * @param ID The time zone ID which is given to this object. * @param startMonth The daylight saving time starting month. Month is * a {@link Calendar#MONTH MONTH} field * value (0-based. e.g., 0 for January). * @param startDay The day of the month on which the daylight saving time starts. * See the class description for the special cases of this parameter. * @param startDayOfWeek The daylight saving time starting day-of-week. * See the class description for the special cases of this parameter. * @param startTime The daylight saving time starting time in the time mode * specified by startTimeMode. * @param startTimeMode The mode of the start time specified by startTime. * @param endMonth The daylight saving time ending month. Month is * a {@link Calendar#MONTH MONTH} field * value (0-based. e.g., 9 for October). * @param endDay The day of the month on which the daylight saving time ends. * See the class description for the special cases of this parameter. * @param endDayOfWeek The daylight saving time ending day-of-week. * See the class description for the special cases of this parameter. * @param endTime The daylight saving ending time in time time mode * specified by endTimeMode. * @param endTimeMode The mode of the end time specified by endTime * @param dstSavings The amount of time in milliseconds saved during * daylight saving time. * * @exception IllegalArgumentException if the month, day, dayOfWeek, time more, or * time parameters are out of range for the start or end rule, or if a time mode * value is invalid. * * @see #WALL_TIME * @see #STANDARD_TIME * @see #UTC_TIME * * @since 1.4 */ public SimpleTimeZone(int rawOffset, String ID, int startMonth, int startDay, int startDayOfWeek, int startTime, int startTimeMode, int endMonth, int endDay, int endDayOfWeek, int endTime, int endTimeMode, int dstSavings) { } /** * Sets the daylight saving time starting year. * * @param year The daylight saving starting year. */ public void setStartYear(int year) { } /** * Sets the daylight saving time start rule. For example, if daylight saving * time starts on the first Sunday in April at 2 am in local wall clock * time, you can set the start rule by calling: *
setStartRule(Calendar.APRIL, 1, Calendar.SUNDAY, 2*60*60*1000);
* * @param startMonth The daylight saving time starting month. Month is * a {@link Calendar#MONTH MONTH} field * value (0-based. e.g., 0 for January). * @param startDay The day of the month on which the daylight saving time starts. * See the class description for the special cases of this parameter. * @param startDayOfWeek The daylight saving time starting day-of-week. * See the class description for the special cases of this parameter. * @param startTime The daylight saving time starting time in local wall clock * time, which is local standard time in this case. * @exception IllegalArgumentException if the startMonth, startDay, * startDayOfWeek, or startTime parameters are out of range */ public void setStartRule(int startMonth, int startDay, int startDayOfWeek, int startTime) { } /** * Sets the daylight saving time start rule to a fixed date within a month. * This method is equivalent to: *
setStartRule(startMonth, startDay, 0, startTime)
* * @param startMonth The daylight saving time starting month. Month is * a {@link Calendar#MONTH MONTH} field * value (0-based. e.g., 0 for January). * @param startDay The day of the month on which the daylight saving time starts. * @param startTime The daylight saving time starting time in local wall clock * time, which is local standard time in this case. * See the class description for the special cases of this parameter. * @exception IllegalArgumentException if the startMonth, * startDayOfMonth, or startTime parameters are out of range * @since 1.2 */ public void setStartRule(int startMonth, int startDay, int startTime) { } /** * Sets the daylight saving time start rule to a weekday before or after the given date within * a month, e.g., the first Monday on or after the 8th. * * @param startMonth The daylight saving time starting month. Month is * a {@link Calendar#MONTH MONTH} field * value (0-based. e.g., 0 for January). * @param startDay The day of the month on which the daylight saving time starts. * @param startDayOfWeek The daylight saving time starting day-of-week. * @param startTime The daylight saving time starting time in local wall clock * time, which is local standard time in this case. * @param after If true, this rule selects the first dayOfWeek on or * after dayOfMonth. If false, this rule * selects the last dayOfWeek on or before * dayOfMonth. * @exception IllegalArgumentException if the startMonth, startDay, * startDayOfWeek, or startTime parameters are out of range * @since 1.2 */ public void setStartRule(int startMonth, int startDay, int startDayOfWeek, int startTime, boolean after) { } /** * Sets the daylight saving time end rule. For example, if daylight saving time * ends on the last Sunday in October at 2 am in wall clock time, * you can set the end rule by calling: * setEndRule(Calendar.OCTOBER, -1, Calendar.SUNDAY, 2*60*60*1000); * * @param endMonth The daylight saving time ending month. Month is * a {@link Calendar#MONTH MONTH} field * value (0-based. e.g., 9 for October). * @param endDay The day of the month on which the daylight saving time ends. * See the class description for the special cases of this parameter. * @param endDayOfWeek The daylight saving time ending day-of-week. * See the class description for the special cases of this parameter. * @param endTime The daylight saving ending time in local wall clock time, * (in milliseconds within the day) which is local daylight * time in this case. * @exception IllegalArgumentException if the endMonth, endDay, * endDayOfWeek, or endTime parameters are out of range */ public void setEndRule(int endMonth, int endDay, int endDayOfWeek, int endTime) { } /** * Sets the daylight saving time end rule to a fixed date within a month. * This method is equivalent to: *
setEndRule(endMonth, endDay, 0, endTime)
* * @param endMonth The daylight saving time ending month. Month is * a {@link Calendar#MONTH MONTH} field * value (0-based. e.g., 9 for October). * @param endDay The day of the month on which the daylight saving time ends. * @param endTime The daylight saving ending time in local wall clock time, * (in milliseconds within the day) which is local daylight * time in this case. * @exception IllegalArgumentException the endMonth, endDay, * or endTime parameters are out of range * @since 1.2 */ public void setEndRule(int endMonth, int endDay, int endTime) { } /** * Sets the daylight saving time end rule to a weekday before or after the given date within * a month, e.g., the first Monday on or after the 8th. * * @param endMonth The daylight saving time ending month. Month is * a {@link Calendar#MONTH MONTH} field * value (0-based. e.g., 9 for October). * @param endDay The day of the month on which the daylight saving time ends. * @param endDayOfWeek The daylight saving time ending day-of-week. * @param endTime The daylight saving ending time in local wall clock time, * (in milliseconds within the day) which is local daylight * time in this case. * @param after If true, this rule selects the first endDayOfWeek on * or after endDay. If false, this rule * selects the last endDayOfWeek on or before * endDay of the month. * @exception IllegalArgumentException the endMonth, endDay, * endDayOfWeek, or endTime parameters are out of range * @since 1.2 */ public void setEndRule(int endMonth, int endDay, int endDayOfWeek, int endTime, boolean after) { } /** * Returns the offset of this time zone from UTC at the given * time. If daylight saving time is in effect at the given time, * the offset value is adjusted with the amount of daylight * saving. * * @param date the time at which the time zone offset is found * @return the amount of time in milliseconds to add to UTC to get * local time. * @since 1.4 */ public int getOffset(long date) { return 0; } /** * Returns the difference in milliseconds between local time and * UTC, taking into account both the raw offset and the effect of * daylight saving, for the specified date and time. This method * assumes that the start and end month are distinct. It also * uses a default {@link GregorianCalendar} object as its * underlying calendar, such as for determining leap years. Do * not use the result of this method with a calendar other than a * default GregorianCalendar. * *

Note: In general, clients should use * Calendar.get(ZONE_OFFSET) + Calendar.get(DST_OFFSET) * instead of calling this method. * * @param era The era of the given date. * @param year The year in the given date. * @param month The month in the given date. Month is 0-based. e.g., * 0 for January. * @param day The day-in-month of the given date. * @param dayOfWeek The day-of-week of the given date. * @param millis The milliseconds in day in standard local time. * @return The milliseconds to add to UTC to get local time. * @exception IllegalArgumentException the era, * month, day, dayOfWeek, * or millis parameters are out of range */ public int getOffset(int era, int year, int month, int day, int dayOfWeek, int millis) { return 0; } /** * Gets the GMT offset for this time zone. * @return the GMT offset value in milliseconds * @see #setRawOffset */ public int getRawOffset() { return 0; } /** * Sets the base time zone offset to GMT. * This is the offset to add to UTC to get local time. * @see #getRawOffset */ public void setRawOffset(int offsetMillis) { } /** * Sets the amount of time in milliseconds that the clock is advanced * during daylight saving time. * @param millisSavedDuringDST the number of milliseconds the time is * advanced with respect to standard time when the daylight saving time rules * are in effect. A positive number, typically one hour (3600000). * @see #getDSTSavings * @since 1.2 */ public void setDSTSavings(int millisSavedDuringDST) { } /** * Returns the amount of time in milliseconds that the clock is * advanced during daylight saving time. * * @return the number of milliseconds the time is advanced with * respect to standard time when the daylight saving rules are in * effect, or 0 (zero) if this time zone doesn't observe daylight * saving time. * * @see #setDSTSavings * @since 1.2 */ public int getDSTSavings() { return 0; } /** * Queries if this time zone uses daylight saving time. * @return true if this time zone uses daylight saving time; * false otherwise. */ public boolean useDaylightTime() { return false; } /** * Queries if the given date is in daylight saving time. * @return true if daylight saving time is in effective at the * given date; false otherwise. */ public boolean inDaylightTime(Date date) { return false; } /** * Returns a clone of this SimpleTimeZone instance. * @return a clone of this instance. */ public Object clone() { return null; } /** * Generates the hash code for the SimpleDateFormat object. * @return the hash code for this object */ public synchronized int hashCode() { return 0; } /** * Compares the equality of two SimpleTimeZone objects. * * @param obj The SimpleTimeZone object to be compared with. * @return True if the given obj is the same as this * SimpleTimeZone object; false otherwise. */ public boolean equals(Object obj) { return false; } /** * Returns true if this zone has the same rules and offset as another zone. * @param other the TimeZone object to be compared with * @return true if the given zone is a SimpleTimeZone and has the * same rules and offset as this one * @since 1.2 */ public boolean hasSameRules(TimeZone other) { return false; } /** * Returns a string representation of this time zone. * @return a string representation of this time zone. */ public String toString() { return null; } /** * Reconstitute this object from a stream (i.e., deserialize it). * * We handle both JDK 1.1 * binary formats and full formats with a packed byte array. */ private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException { } /** * Save the state of this object to a stream (i.e., serialize it). * * @serialData We write out two formats, a JDK 1.1 compatible format, using * DOW_IN_MONTH_MODE rules, in the required section, followed * by the full rules, in packed format, in the optional section. The * optional section will be ignored by JDK 1.1 code upon stream in. *

Contents of the optional section: The length of a byte array is * emitted (int); this is 4 as of this release. The byte array of the given * length is emitted. The contents of the byte array are the true values of * the fields startDay, startDayOfWeek, * endDay, and endDayOfWeek. The values of these * fields in the required section are approximate values suited to the rule * mode DOW_IN_MONTH_MODE, which is the only mode recognized by * JDK 1.1. */ private void writeObject(ObjectOutputStream stream) throws IOException { } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy