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