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()
705 public long between(Temporal temporal1Inclusive, Temporal temporal2Exclusive) { in between() argument706 if (temporal1Inclusive.getClass() != temporal2Exclusive.getClass()) { in between()707 return temporal1Inclusive.until(temporal2Exclusive, this); in between()711 return Math.subtractExact(temporal2Exclusive.getLong(WEEK_BASED_YEAR), in between()714 return temporal1Inclusive.until(temporal2Exclusive, MONTHS) / 3; in between()
284 long between(Temporal temporal1Inclusive, Temporal temporal2Exclusive); in between() argument