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

org.javers.java8support.LocalDateTypeAdapter Maven / Gradle / Ivy

There is a newer version: 7.6.2
Show newest version
package org.javers.java8support;

import org.javers.core.json.BasicStringTypeAdapter;

import java.time.LocalDate;
import java.time.format.DateTimeFormatter;


/**
 * @author bartosz.walacik
 */
class LocalDateTypeAdapter extends BasicStringTypeAdapter {
    private static final DateTimeFormatter ISO_FORMAT = DateTimeFormatter.ISO_DATE;

    @Override
    public String serialize(LocalDate sourceValue) {
        return sourceValue.format(ISO_FORMAT);
    }

    @Override
    public LocalDate deserialize(String serializedValue) {
        return LocalDate.parse(serializedValue, ISO_FORMAT);
    }

    @Override
    public Class getValueType() {
        return LocalDate.class;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy