hi there, Can any one explain how Java SimpleTimeZone rules are interpreted. For example a rule for Europe/London is as follows:
var rule = {
"dstSavings": 3600000,
"startYear": 0,
"startMonth": 2,
"startDay": -1,
"startDayOfWeek": 1,
"endMonth": 9,
"endDay": -1,
"endDayOfWeek": 1,
"endTime": 3600000,
"rawOffset": 0,
"startTime": 3600000,
"startTimeMode": "UTC",
"endTimeMode": "UTC",
"useDaylight": true
};
Reading the STZ documentation is helpful but not for this particular rule.
What does endDay = 0 signify? What if startDay = 0?
thanks,