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

com.migesok.jaxb.adapter.javatime.OffsetTimeXmlAdapter Maven / Gradle / Ivy

The newest version!
package com.migesok.jaxb.adapter.javatime;

import java.time.OffsetTime;
import java.time.format.DateTimeFormatter;

/**
 * {@code XmlAdapter} mapping JSR-310 {@code OffsetTime} to ISO-8601 string
 * 

* String format details: {@link java.time.format.DateTimeFormatter#ISO_OFFSET_TIME} * * @see javax.xml.bind.annotation.adapters.XmlAdapter * @see java.time.OffsetTime */ public class OffsetTimeXmlAdapter extends TemporalAccessorXmlAdapter { public OffsetTimeXmlAdapter() { super(DateTimeFormatter.ISO_OFFSET_TIME, OffsetTime::from); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy