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

javax.xml.bind.IsoLocalDateAdapter Maven / Gradle / Ivy

There is a newer version: 0.0.4
Show newest version
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