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