Searched refs:temporal2Exclusive (Results 1 – 3 of 3) sorted by relevance
271 public long between(Temporal temporal1Inclusive, Temporal temporal2Exclusive) { in between() argument272 return temporal1Inclusive.until(temporal2Exclusive, this); in between()
729 public long between(Temporal temporal1Inclusive, Temporal temporal2Exclusive) { in between() argument730 if (temporal1Inclusive.getClass() != temporal2Exclusive.getClass()) { in between()731 return temporal1Inclusive.until(temporal2Exclusive, this); in between()735 return Math.subtractExact(temporal2Exclusive.getLong(WEEK_BASED_YEAR), in between()738 return temporal1Inclusive.until(temporal2Exclusive, MONTHS) / 3; in between()
284 long between(Temporal temporal1Inclusive, Temporal temporal2Exclusive); in between() argument