Home
last modified time | relevance | path

Searched refs:fixedInstant (Results 1 – 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/time/
DClock.java314 public static Clock fixed(Instant fixedInstant, ZoneId zone) { in fixed() argument
315 Objects.requireNonNull(fixedInstant, "fixedInstant"); in fixed()
317 return new FixedClock(fixedInstant, zone); in fixed()
500 FixedClock(Instant fixedInstant, ZoneId zone) { in FixedClock() argument
501 this.instant = fixedInstant; in FixedClock()