jvmMain.com.bselzer.ktx.datetime.format.PatternDateTimeFormatter.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ktx-datetime-jvm Show documentation
Show all versions of ktx-datetime-jvm Show documentation
Extensions for the Kotlin standard library and third-party libraries.
The newest version!
package com.bselzer.ktx.datetime.format
import java.time.format.DateTimeFormatter
actual class PatternDateTimeFormatter actual constructor(
private val pattern: String
) : com.bselzer.ktx.datetime.format.DateTimeFormatter, BaseDateTimeFormatter() {
override val formatter: DateTimeFormatter
get() = DateTimeFormatter.ofPattern(pattern)
}