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

handlebars.kotlin-client.infrastructure.LocalDateAdapter.kt.mustache Maven / Gradle / Ivy

There is a newer version: 1.0.54
Show newest version
package {{packageName}}.infrastructure

import com.squareup.moshi.FromJson
import com.squareup.moshi.ToJson
{{^threetenbp}}
import java.time.LocalDate
import java.time.format.DateTimeFormatter
{{/threetenbp}}
{{#threetenbp}}
import org.threeten.bp.LocalDate
import org.threeten.bp.format.DateTimeFormatter
{{/threetenbp}}

class LocalDateAdapter {
    @ToJson
    fun toJson(value: LocalDate): String {
        return DateTimeFormatter.ISO_LOCAL_DATE.format(value)
    }

    @FromJson
    fun fromJson(value: String): LocalDate {
        return LocalDate.parse(value, DateTimeFormatter.ISO_LOCAL_DATE_TIME)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy