- All Implemented Interfaces:
- Serializable,- Converter<Date,- LocalDate> 
Deprecated.
- Author:
- Lukas Eder
- See Also:
- 
Constructor Details- 
DateToLocalDateConverterpublic DateToLocalDateConverter()Deprecated.
 
- 
- 
Method Details- 
fromDeprecated.Description copied from interface:ConverterRead and convert a database object to a user object.- Parameters:
- t- The database object.
- Returns:
- The user object.
 
- 
toDeprecated.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).