I would like the get the date of the first day of the week based on LocalDate.now(). The following was possible with JodaTime, but seems to be removed from the new Date API in Java 8.
LocalDate now = LocalDate.now();
System.out.println(now.withDayOfWeek(DateTimeConstants.MONDAY));
I can not call 'withDayOfWeek()', because it does not exist.
So my question is: How to get the date of the first day of the week based on some LocalDate?