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

pro.fessional.wings.silencer.jaxb.LocalTimeXmlAdapter Maven / Gradle / Ivy

The newest version!
package pro.fessional.wings.silencer.jaxb;

import jakarta.xml.bind.annotation.adapters.XmlAdapter;
import pro.fessional.mirana.time.DateParser;

import java.time.LocalTime;
import java.time.format.DateTimeFormatter;

/**
 * @author trydofor
 * @since 2021-04-19
 */
public class LocalTimeXmlAdapter extends XmlAdapter {
    @Override
    public LocalTime unmarshal(String stringValue) {
        return stringValue != null ? DateParser.parseTime(stringValue) : null;
    }

    @Override
    public String marshal(LocalTime value) {
        return value != null ? value.format(DateTimeFormatter.ISO_TIME) : null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy