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

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

There is a newer version: 0.0.4
Show newest version
package javax.xml.bind;

import java.time.OffsetTime;
import java.time.format.DateTimeFormatter;

public class IsoOffsetTimeAdapter extends TemporalAdapter{

	public IsoOffsetTimeAdapter() {
		super(DateTimeFormatter.ISO_OFFSET_TIME);
	}
	
	@Override
	public OffsetTime unmarshal(String v) throws Exception {
		return OffsetTime.parse(v,DateTimeFormatter.ISO_OFFSET_TIME);
	}


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy