public LocalDate minusWeeks (long weeksToSubtract)

Returns a copy of this LocalDate with the specified number of weeks subtracted.

This method subtracts the specified amount in weeks from the days field decrementing the month and year fields as necessary to ensure the result remains valid. The result is only invalid if the maximum/minimum year is exceeded.

For example, 2009-01-07 minus one week would result in 2008-12-31.

This instance is immutable and unaffected by this method call.

Parameters:
weeksToSubtract    the weeks to subtract, may be negative

Returns:  a LocalDate based on this date with the weeks subtracted, not null

Exceptions:
DateTimeException    if the result exceeds the supported date range