TimeChangeRecurrence.withDayOfTheWeek constructor

TimeChangeRecurrence.withDayOfTheWeek(
  1. DayOfTheWeekIndex dayOfTheWeekIndex,
  2. DayOfTheWeek dayOfTheWeek,
  3. Month month
)
Initializes a new instance of the The index of the day in the month at which the time change occurs. The day of the week the time change occurs. The month the time change occurs.

Implementation

TimeChangeRecurrence.withDayOfTheWeek(
    enumerations.DayOfTheWeekIndex dayOfTheWeekIndex,
    enumerations.DayOfTheWeek dayOfTheWeek,
    enumerations.Month month)
    : super() {
  this._dayOfTheWeekIndex = dayOfTheWeekIndex;
  this._dayOfTheWeek = dayOfTheWeek;
  this._month = month;
}