Class UUIDStringConverter
java.lang.Object
org.datanucleus.store.types.converters.UUIDStringConverter
- All Implemented Interfaces:
Serializable, ColumnLengthDefiningTypeConverter, TypeConverter<UUID,String>
public class UUIDStringConverter
extends Object
implements TypeConverter<UUID,String>, ColumnLengthDefiningTypeConverter
Class to handle the conversion between java.util.UUID and a String form.
- See Also:
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionintgetDefaultColumnLength(int columnPosition) Accessor for the default column length to use for the datastore column at the specified position.toDatastoreType(UUID uuid) Method to convert the passed member value to the datastore type.toMemberType(String str) Method to convert the passed datastore value to the member type.
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
-
Constructor Details
-
UUIDStringConverter
public UUIDStringConverter()
-
-
Method Details
-
toMemberType
Description copied from interface:TypeConverterMethod to convert the passed datastore value to the member type.- Specified by:
toMemberTypein interfaceTypeConverter<UUID,String> - Parameters:
str- Value from the datastore- Returns:
- Value for the member
-
toDatastoreType
Description copied from interface:TypeConverterMethod to convert the passed member value to the datastore type.- Specified by:
toDatastoreTypein interfaceTypeConverter<UUID,String> - Parameters:
uuid- Value from the member- Returns:
- Value for the datastore
-
getDefaultColumnLength
public int getDefaultColumnLength(int columnPosition) Description copied from interface:ColumnLengthDefiningTypeConverterAccessor for the default column length to use for the datastore column at the specified position.- Specified by:
getDefaultColumnLengthin interfaceColumnLengthDefiningTypeConverter- Parameters:
columnPosition- Position of the column being enquired about (0 = first)- Returns:
- The column length (-1 if no preference)
-