Package javax.time.calendar.zone
Class TZDBZoneRulesCompiler.TZDBMonthDayTime
- java.lang.Object
-
- javax.time.calendar.zone.TZDBZoneRulesCompiler.TZDBMonthDayTime
-
- Direct Known Subclasses:
TZDBZoneRulesCompiler.TZDBRule
,TZDBZoneRulesCompiler.TZDBZone
- Enclosing class:
- TZDBZoneRulesCompiler
abstract class TZDBZoneRulesCompiler.TZDBMonthDayTime extends java.lang.Object
Class representing a month-day-time in the TZDB file.
-
-
Field Summary
Fields Modifier and Type Field Description (package private) boolean
adjustForwards
Whether to adjust forwards.(package private) int
dayOfMonth
The day-of-month of the cutover.(package private) DayOfWeek
dayOfWeek
The day-of-week of the cutover.(package private) boolean
endOfDay
Whether this is midnight end of day.(package private) MonthOfYear
month
The month of the cutover.(package private) LocalTime
time
The time of the cutover.(package private) ZoneRulesBuilder.TimeDefinition
timeDefinition
The time of the cutover.
-
Constructor Summary
Constructors Constructor Description TZDBMonthDayTime()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description (package private) void
adjustToFowards(int year)
-
-
-
Field Detail
-
month
MonthOfYear month
The month of the cutover.
-
dayOfMonth
int dayOfMonth
The day-of-month of the cutover.
-
adjustForwards
boolean adjustForwards
Whether to adjust forwards.
-
dayOfWeek
DayOfWeek dayOfWeek
The day-of-week of the cutover.
-
time
LocalTime time
The time of the cutover.
-
endOfDay
boolean endOfDay
Whether this is midnight end of day.
-
timeDefinition
ZoneRulesBuilder.TimeDefinition timeDefinition
The time of the cutover.
-
-