Searched refs:fixedInstant (Results 1 – 1 of 1) sorted by relevance
314 public static Clock fixed(Instant fixedInstant, ZoneId zone) { in fixed() argument315 Objects.requireNonNull(fixedInstant, "fixedInstant"); in fixed()317 return new FixedClock(fixedInstant, zone); in fixed()500 FixedClock(Instant fixedInstant, ZoneId zone) { in FixedClock() argument501 this.instant = fixedInstant; in FixedClock()