com.jwebmp.entityassist.injections.bigdecimal.BigDecimalToBigIntIDMapping Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of entity-assist Show documentation
Show all versions of entity-assist Show documentation
A Domain Driven SQL Builder Generator for JPMS/JDK8
package com.jwebmp.entityassist.injections.bigdecimal;
import com.jwebmp.entityassist.services.EntityAssistIDMapping;
import java.math.BigDecimal;
import java.math.BigInteger;
/**
* Maps Big Decimals ID Returned Types
*/
public class BigDecimalToBigIntIDMapping
extends EntityAssistIDMapping
{
@Override
public BigInteger toObject(BigDecimal dbReturned)
{
return dbReturned.toBigInteger();
}
}