LocalDateRange |
LocalDateRange.intersection(LocalDateRange other) |
Calculates the range that is the intersection of this range and the specified range.
|
static LocalDateRange |
LocalDateRange.of(java.time.LocalDate startInclusive,
java.time.LocalDate endExclusive) |
Obtains a half-open range of dates, including the start and excluding the end.
|
static LocalDateRange |
LocalDateRange.of(java.time.LocalDate startInclusive,
java.time.Period period) |
Obtains an instance of LocalDateRange from the start and a period.
|
static LocalDateRange |
LocalDateRange.ofClosed(java.time.LocalDate startInclusive,
java.time.LocalDate endInclusive) |
Obtains a closed range of dates, including the start and end.
|
static LocalDateRange |
LocalDateRange.ofEmpty(java.time.LocalDate date) |
Obtains an empty date range located at the specified date.
|
static LocalDateRange |
LocalDateRange.ofUnbounded() |
Obtains a range that is unbounded at the start and end.
|
static LocalDateRange |
LocalDateRange.ofUnboundedEnd(java.time.LocalDate startInclusive) |
Obtains a range from and including the specified start date.
|
static LocalDateRange |
LocalDateRange.ofUnboundedStart(java.time.LocalDate endExclusive) |
Obtains a range up to, but not including, the specified end date.
|
static LocalDateRange |
LocalDateRange.parse(java.lang.CharSequence text) |
Obtains an instance of LocalDateRange from a text string such as
2007-12-03/2007-12-04, where the end date is exclusive.
|
LocalDateRange |
LocalDateRange.span(LocalDateRange other) |
Calculates the smallest range that encloses this range and the specified range.
|
LocalDateRange |
LocalDateRange.union(LocalDateRange other) |
Calculates the range that is the union of this range and the specified range.
|
LocalDateRange |
LocalDateRange.withEnd(java.time.temporal.TemporalAdjuster adjuster) |
Returns a copy of this range with the end date adjusted.
|
LocalDateRange |
LocalDateRange.withStart(java.time.temporal.TemporalAdjuster adjuster) |
Returns a copy of this range with the start date adjusted.
|