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