OffsetDateTime.minusDays

Returns a copy of this {@code OffsetDateTime} with the specified number of days subtracted. !(p) This method subtracts the specified amount 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. !(p) For example, 2009-01-01 minus one day would result _in 2008-12-31. !(p) This instance is immutable and unaffected by this method call.

@param days the days to subtract, may be negative @return an {@code OffsetDateTime} based on this date-time with the days subtracted, not null @throws DateTimeException if the result exceeds the supported date range

class OffsetDateTime
minusDays
(
long days
)

Meta