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

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

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

import org.javers.core.json.BasicStringTypeAdapter;

import java.time.OffsetDateTime;
import java.time.format.DateTimeFormatter;

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy