This is a Locale independent solution. Note: If today is Monday (or Sunday) will return the current day.
LocalDate today = LocalDate.now();
LocalDate lastMonday = today.minusDays(today.getDayOfWeek().getValue() - 1);
LocalDate lastSunday = today.minusDays(today.getDayOfWeek().getValue() % 7);