All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jp.ne.opt.chronoscala.InstantForwarder.scala Maven / Gradle / Ivy

The newest version!
package jp.ne.opt.chronoscala

import java.time.{Instant, Clock}

trait InstantForwarder {

  def now(): Instant = Instant.now(ClockProvider.clock)

  def now(clock: Clock): Instant = Instant.now(clock)

  def parse(str: String): Instant = Instant.parse(str)

  def ofEpochMilli(millis: Long): Instant = Instant.ofEpochMilli(millis)

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy