- All Implemented Interfaces:
 Serializable,Converter<Date,LocalDate> 
Deprecated.
- Author:
 - Lukas Eder
 - See Also:
 
- 
Constructor Details
- 
DateToLocalDateConverter
public DateToLocalDateConverter()Deprecated. 
 - 
 - 
Method Details
- 
from
Deprecated.Description copied from interface:ConverterRead and convert a database object to a user object.- Parameters:
 t- The database object.- Returns:
 - The user object.
 
 - 
to
Deprecated.Description copied from interface:ConverterConvert and write a user object to a database object.- Parameters:
 u- The user object.- Returns:
 - The database object.
 
 
 - 
 
Converter.ofNullable(Class, Class, Function, Function)instead, e.g.Converter.ofNullable(Date.class, LocalDate.class, Date::toLocalDate, Date::valueOf).