![JAR search and dependency download from the Maven repository](/logo.png)
javax.xml.bind.IsoLocalDateAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-xml Show documentation
Show all versions of commons-xml Show documentation
Common classes for XML schema generation and mapping
package javax.xml.bind;
import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
public class IsoLocalDateAdapter extends TemporalAdapter{
public IsoLocalDateAdapter() {
super(DateTimeFormatter.ISO_DATE);
}
@Override
public LocalDate unmarshal(String v) throws Exception {
return LocalDate.parse(v, DateTimeFormatter.ISO_DATE);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy