Home
last modified time | relevance | path

Searched refs:endDateExclusive (Results 1 – 4 of 4) sorted by relevance

/libcore/ojluni/src/main/java/java/time/chrono/
DChronoPeriod.java116 …static ChronoPeriod between(ChronoLocalDate startDateInclusive, ChronoLocalDate endDateExclusive) { in between() argument
118 Objects.requireNonNull(endDateExclusive, "endDateExclusive"); in between()
119 return startDateInclusive.until(endDateExclusive); in between()
DChronoLocalDate.java621 ChronoPeriod until(ChronoLocalDate endDateExclusive); in until() argument
/libcore/ojluni/src/main/java/java/time/
DPeriod.java379 public static Period between(LocalDate startDateInclusive, LocalDate endDateExclusive) { in between() argument
380 return startDateInclusive.until(endDateExclusive); in between()
DLocalDate.java1656 public Period until(ChronoLocalDate endDateExclusive) { in until() argument
1657 LocalDate end = LocalDate.from(endDateExclusive); in until()