
com.avsystem.commons.misc.TimestampConversions.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-core_2.13 Show documentation
Show all versions of commons-core_2.13 Show documentation
AVSystem commons library for Scala
package com.avsystem.commons.misc
import java.time.Instant
import com.avsystem.commons.JDate
final class TimestampConversions(private val millis: Long) extends AnyVal {
def toTimestamp: Timestamp = Timestamp(millis)
def toInstant: Instant = Instant.ofEpochMilli(millis)
def toJDate: JDate = new JDate(millis)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy