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

io.github.threetenjaxb.core.InstantXmlAdapter Maven / Gradle / Ivy

The newest version!
package io.github.threetenjaxb.core;

import java.time.Instant;
import java.time.format.DateTimeFormatter;

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

* String format details: {@link java.time.format.DateTimeFormatter#ISO_INSTANT} * * @see jakarta.xml.bind.annotation.adapters.XmlAdapter * @see java.time.Instant */ public class InstantXmlAdapter extends TemporalAccessorXmlAdapter { public InstantXmlAdapter() { super(DateTimeFormatter.ISO_INSTANT, Instant::from); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy