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

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

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

import java.time.ZonedDateTime;
import java.time.format.DateTimeFormatter;

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

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





© 2015 - 2024 Weber Informatics LLC | Privacy Policy