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

grails.plugin.json.converters.ZonedDateTimeJsonConverter.groovy Maven / Gradle / Ivy

There is a newer version: 6.1.0
Show newest version
package grails.plugin.json.converters

import grails.plugin.json.builder.JsonGenerator
import groovy.transform.CompileStatic

import java.time.ZonedDateTime
import java.time.format.DateTimeFormatter

/**
 * A class to render a {@link ZonedDateTime} as json
 *
 * @author James Kleeh
 */
@CompileStatic
class ZonedDateTimeJsonConverter implements JsonGenerator.Converter {

    @Override
    boolean handles(Class type) {
        ZonedDateTime == type
    }

    @Override
    Object convert(Object value, String key) {
        DateTimeFormatter.ISO_ZONED_DATE_TIME.format((ZonedDateTime)value)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy