public static IntervalOfTime thisYear() { PointInTime today = PointInTime.today(); return new PointInTime(today.getYear()).promote(); }
public static IntervalOfTime untilToday(ReadablePeriod p) { PointInTime today = PointInTime.today(); return new IntervalOfTime(today.subtract(p), today, true, true); }
public static IntervalOfTime today() { return PointInTime.today().promote(); }