javax.xml.bind.IsoLocalDateTimeAdapter 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.LocalDateTime;
import java.time.format.DateTimeFormatter;
public class IsoLocalDateTimeAdapter extends TemporalAdapter{
public IsoLocalDateTimeAdapter() {
super(DateTimeFormatter.ISO_LOCAL_DATE_TIME);
}
@Override
public LocalDateTime unmarshal(String v) throws Exception {
return LocalDateTime.parse(v,DateTimeFormatter.ISO_LOCAL_DATE_TIME);
}
}