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