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