Searched refs:fixedInstant (Results 1 – 2 of 2) sorted by relevance
169 static InstantSource fixed(Instant fixedInstant) { in fixed() argument170 return Clock.fixed(fixedInstant, ZoneOffset.UTC); in fixed()
347 public static Clock fixed(Instant fixedInstant, ZoneId zone) { in fixed() argument348 Objects.requireNonNull(fixedInstant, "fixedInstant"); in fixed()350 return new FixedClock(fixedInstant, zone); in fixed()642 FixedClock(Instant fixedInstant, ZoneId zone) { in FixedClock() argument643 this.instant = fixedInstant; in FixedClock()