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