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