Searched refs:offsetDuration (Results 1 – 2 of 2) sorted by relevance
193 static InstantSource offset(InstantSource baseSource, Duration offsetDuration) { in offset() argument195 return Clock.offset(baseSource.withZone(ZoneOffset.UTC), offsetDuration); in offset()
373 public static Clock offset(Clock baseClock, Duration offsetDuration) { in offset() argument375 Objects.requireNonNull(offsetDuration, "offsetDuration"); in offset()376 if (offsetDuration.equals(Duration.ZERO)) { in offset()379 return new OffsetClock(baseClock, offsetDuration); in offset()