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
Try
System.out.println(now.with(DayOfWeek.MONDAY));