Is there a nicer/easier way of constructing LocalDateTime
object representing today at 6 AM than this?
LocalDateTime todayAt6 = LocalDateTime.now().withHour(6).withMinute(0).withSecond(0).withNano(0);
Somehow I don't like dealing with minutes/seconds/nano when all I want to say is now().withHours()
.