Home
last modified time | relevance | path

Searched refs:startDateInclusive (Results 1 – 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/java/time/chrono/
DChronoPeriod.java116 …public static ChronoPeriod between(ChronoLocalDate startDateInclusive, ChronoLocalDate endDateExcl… in between() argument
117 Objects.requireNonNull(startDateInclusive, "startDateInclusive"); in between()
119 return startDateInclusive.until(endDateExclusive); in between()
/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()