net.dankito.utils.datetime.LocalDateTimeExtensions.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-utils Show documentation
Show all versions of java-utils Show documentation
Some basic utils needed in many projects
package net.dankito.utils.datetime
import java.time.LocalDateTime
import java.util.*
@JvmName("asNullableUtilDate")
fun LocalDateTime?.asUtilDate(): Date? {
return DateConvertUtils.asUtilDate(this)
}
fun LocalDateTime.asUtilDate(): Date {
return DateConvertUtils.asUtilDate(this)
}