public static Recurring createTemporayCopy(Recurring r) {
   Recurring newR =
       new Recurring(
           0,
           r.getLabel(),
           r.getMinutes(),
           r.getHours(),
           r.getDays(),
           r.getMonths(),
           r.getYears(),
           r.isForDue(),
           r.getStartDate(),
           r.getEndDate(),
           true,
           r.isExact(),
           r.getWeekdaysRaw(),
           r.getId());
   return newR.create();
 }