dsl_json.org.threeten.bp.LocalDateDslJsonConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dsl-json-threetenbp Show documentation
Show all versions of dsl-json-threetenbp Show documentation
DSL Platform compatible Java JSON library (https://dsl-platform.com)
package dsl_json.org.threeten.bp;
import com.dslplatform.json.Configuration;
import com.dslplatform.json.DslJson;
import com.dslplatform.json.ThreetenbpConverter;
import org.threeten.bp.LocalDate;
public class LocalDateDslJsonConverter implements Configuration {
@Override
public void configure(DslJson json) {
json.registerReader(LocalDate.class, ThreetenbpConverter.LOCAL_DATE_READER);
json.registerWriter(LocalDate.class, ThreetenbpConverter.LOCAL_DATE_WRITER);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy