
com.avsystem.commons.jiop.JavaTimeInterop.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
package jiop
import java.time.Instant
import com.avsystem.commons.jiop.JavaTimeInterop.InstantOps
import com.avsystem.commons.misc.Timestamp
trait JavaTimeInterop {
implicit def instantOps(instant: Instant): InstantOps = new InstantOps(instant)
}
object JavaTimeInterop {
class InstantOps(private val instant: Instant) extends AnyVal {
def truncateToTimestamp: Timestamp = Timestamp(instant.toEpochMilli)
def truncateToJDate: JDate = new JDate(instant.toEpochMilli)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy