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

/libcore/ojluni/src/main/java/java/time/chrono/
H A DChronoPeriod.java111 * @param startDateInclusive the start date, inclusive, specifying the chronology of the calculation, not null
116 public static ChronoPeriod between(ChronoLocalDate startDateInclusive, ChronoLocalDate endDateExclusive) { argument
117 Objects.requireNonNull(startDateInclusive, "startDateInclusive");
119 return startDateInclusive.until(endDateExclusive);
/libcore/ojluni/src/main/java/java/time/
H A DPeriod.java374 * @param startDateInclusive the start date, inclusive, not null
379 public static Period between(LocalDate startDateInclusive, LocalDate endDateExclusive) { argument
380 return startDateInclusive.until(endDateExclusive);

Completed in 30 milliseconds