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