br.nom.abdon.util.LocalDateISO8601Deserializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of abd-commons-util Show documentation
Show all versions of abd-commons-util Show documentation
Very very basic Java utility lib for use on my own projects.
The newest version!
package br.nom.abdon.util;
import com.fasterxml.jackson.datatype.jsr310.deser.LocalDateDeserializer;
import java.time.format.DateTimeFormatter;
/**
*
* @author bruno
*/
public class LocalDateISO8601Deserializer extends LocalDateDeserializer{
public LocalDateISO8601Deserializer(){
super(DateTimeFormatter.ISO_LOCAL_DATE);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy