daysOfWeek.add(Integer.parseInt(num));
}
scheduleBuilder.onDaysOfTheWeek(daysOfWeek);
}
} else {
scheduleBuilder.onDaysOfTheWeek(DailyTimeIntervalScheduleBuilder.ALL_DAYS_OF_THE_WEEK);
}
if (timeOfDayStr != null) {
String[] nums = timeOfDayStr.split(",");
TimeOfDay startTimeOfDay;