yakworks.json.groovy.converters.LocalDateJsonConverter.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of groovy-commons Show documentation
Show all versions of groovy-commons Show documentation
common groovy and java utils
The newest version!
/*
* Copyright 2021 original authors
* SPDX-License-Identifier: Apache-2.0
*/
package yakworks.json.groovy.converters
import java.time.LocalDate
import java.time.format.DateTimeFormatter
import groovy.json.JsonGenerator
import groovy.transform.CompileStatic
/**
* A class to render a {@link LocalDate} as json
*
* @author James Kleeh
*/
@CompileStatic
class LocalDateJsonConverter implements JsonGenerator.Converter {
@Override
boolean handles(Class> type) {
LocalDate == type
}
@Override
Object convert(Object value, String key) {
DateTimeFormatter.ISO_LOCAL_DATE.format((LocalDate)value)
}
}