Class SerializableStringConverter
- java.lang.Object
-
- org.datanucleus.store.types.converters.SerializableStringConverter
-
- All Implemented Interfaces:
Serializable,TypeConverter<Serializable,String>
public class SerializableStringConverter extends Object implements TypeConverter<Serializable,String>
Convenience class to handle Java serialisation of a Serializable object to/from String. Of use where a datastore allows persistence of String types, but not serialised types.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SerializableStringConverter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoDatastoreType(Serializable memberValue)Method to convert the passed member value to the datastore type.SerializabletoMemberType(String datastoreValue)Method to convert the passed datastore value to the member type.
-
-
-
Method Detail
-
toDatastoreType
public String toDatastoreType(Serializable memberValue)
Description copied from interface:TypeConverterMethod to convert the passed member value to the datastore type.- Specified by:
toDatastoreTypein interfaceTypeConverter<Serializable,String>- Parameters:
memberValue- Value from the member- Returns:
- Value for the datastore
-
toMemberType
public Serializable toMemberType(String datastoreValue)
Description copied from interface:TypeConverterMethod to convert the passed datastore value to the member type.- Specified by:
toMemberTypein interfaceTypeConverter<Serializable,String>- Parameters:
datastoreValue- Value from the datastore- Returns:
- Value for the member
-
-