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

pl.fhframework.model.forms.converters.LocalDateTimeAndStringConverter Maven / Gradle / Ivy

There is a newer version: 4.10.401
Show newest version
package pl.fhframework.model.forms.converters;

import pl.fhframework.format.AutoRegisteredConverter;
import pl.fhframework.format.FhConverter;

import java.time.LocalDate;
import java.time.LocalDateTime;

@FhConverter
public class LocalDateTimeAndStringConverter extends AutoRegisteredConverter {
    @Override
    public LocalDateTime convert(String source) {
        return LocalDateTime.parse(source);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy