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