if (targetType.equals(UnsignedInteger.class))
return bool ? new UnsignedInteger(1) : new UnsignedInteger(0);
if (targetType.equals(UnsignedLong.class))
return bool ? new UnsignedLong("1") : new UnsignedLong("0");
if (targetType.equals(SignedByte.class))
return bool ? new SignedByte("1") : new SignedByte("0");
if (targetType.equals(BigInteger.class))
return bool ? new BigInteger("1") : new BigInteger("0");
if (targetType.equals(propel.core.userTypes.BigInteger.class))
{
propel.core.userTypes.BigInteger bi = new propel.core.userTypes.BigInteger();