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

jvmMain.com.bselzer.ktx.datetime.format.PatternDateTimeFormatter.kt Maven / Gradle / Ivy

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)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy