Generated by
JDiff

Class java.util.SimpleTimeZone

Documentation changed from old to new.

Added Constructors
SimpleTimeZone(int, String, int, int, int, int, int, int, int, int, int, int, int) Constructs a SimpleTimeZone with the given base time zone offset from GMT time zone ID and rules for starting and ending the daylight time.
 

Changed Constructors
SimpleTimeZone(int, String) Documentation changed from old to new.
Constructs a SimpleTimeZone with the given base time zone offset from GMT and time zone ID with no daylight saving time schedule.
SimpleTimeZone(int, String, int, int, int, int, int, int, int, int) Documentation changed from old to new.
Constructs a SimpleTimeZone with the given base time zone offset from GMT time zone ID and rules for starting and ending the daylight time.
SimpleTimeZone(int, String, int, int, int, int, int, int, int, int, int) Documentation changed from old to new.
Constructs a SimpleTimeZone with the given base time zone offset from GMT time zone ID and rules for starting and ending the daylight time.
 

Added Methods
int getOffset(long) Returns the offset of this time zone from UTC at the given time.
 

Changed Methods
Object clone() Documentation changed from old to new.
Returns a clone of this SimpleTimeZone instance.
boolean equals(Object) Documentation changed from old to new.
Compares the equality of two SimpleTimeZone objects.
int getDSTSavings() Documentation changed from old to new.
Returns the amount of time in milliseconds that the clock is advanced during daylight saving time.
int getRawOffset() Documentation changed from old to new.
Gets the GMT offset for this time zone.
boolean hasSameRules(TimeZone) Documentation changed from old to new.
Returns true if this zone has the same rules and offset as another zone.
int hashCode() Documentation changed from old to new.
Generates the hash code for the SimpleDateFormat object.
boolean inDaylightTime(Date) Documentation changed from old to new.
Queries if the given date is in daylight saving time.
void setDSTSavings(int) Documentation changed from old to new.
Sets the amount of time in milliseconds that the clock is advanced during daylight saving time.
void setRawOffset(int) Documentation changed from old to new.
Sets the base time zone offset to GMT.
void setStartYear(int) Documentation changed from old to new.
Sets the daylight saving time starting year.
String toString() Documentation changed from old to new.
Returns a string representation of this time zone.
boolean useDaylightTime() Documentation changed from old to new.
Queries if this time zone uses daylight saving time.
int getOffset(int, int, int, int, int, int) Documentation changed from old to new.
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.
void setEndRule(int, int, int) Documentation changed from old to new.
Sets the daylight saving time end rule to a fixed date within a month.
void setEndRule(int, int, int, int) Documentation changed from old to new.
Sets the daylight saving time end rule.
void setEndRule(int, int, int, int, boolean) Documentation changed from old to new.
Sets the daylight saving time end rule to a weekday before or after the given date within a month e.g.
void setStartRule(int, int, int) Documentation changed from old to new.
Sets the daylight saving time start rule to a fixed date within a month.
void setStartRule(int, int, int, int) Documentation changed from old to new.
Sets the daylight saving time start rule.
void setStartRule(int, int, int, int, boolean) Documentation changed from old to new.
Sets the daylight saving time start rule to a weekday before or after the given date within a month e.g.
 

Added Fields
int STANDARD_TIME Constant for a mode of start or end time specified as standard time.
int UTC_TIME Constant for a mode of start or end time specified as UTC.
int WALL_TIME Constant for a mode of start or end time specified as wall clock time.