Module org.datanucleus
Class LocalDateSqlDateConverter
- java.lang.Object
-
- org.datanucleus.store.types.converters.LocalDateSqlDateConverter
-
- All Implemented Interfaces:
Serializable,TypeConverter<LocalDate,Date>
public class LocalDateSqlDateConverter extends Object implements TypeConverter<LocalDate,Date>
Class to handle the conversion between java.time.LocalDate and java.sql.Date.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LocalDateSqlDateConverter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DatetoDatastoreType(LocalDate localDate)Method to convert the passed member value to the datastore type.LocalDatetoMemberType(Date date)Method to convert the passed datastore value to the member type.
-
-
-
Method Detail
-
toMemberType
public LocalDate toMemberType(Date date)
Description copied from interface:TypeConverterMethod to convert the passed datastore value to the member type.- Specified by:
toMemberTypein interfaceTypeConverter<LocalDate,Date>- Parameters:
date- Value from the datastore- Returns:
- Value for the member
-
toDatastoreType
public Date toDatastoreType(LocalDate localDate)
Description copied from interface:TypeConverterMethod to convert the passed member value to the datastore type.- Specified by:
toDatastoreTypein interfaceTypeConverter<LocalDate,Date>- Parameters:
localDate- Value from the member- Returns:
- Value for the datastore
-
-