Open Source Repository

Home /hibernate/hibernate-3.2.6.ga | Repository Home



org/hibernate/type/BigIntegerType.java
//$Id: BigIntegerType.java 7825 2005-08-10 20:23:55Z oneovthafew $
package org.hibernate.type;

import java.math.BigDecimal;
import java.math.BigInteger;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Types;

import org.hibernate.EntityMode;
import org.hibernate.HibernateException;
import org.hibernate.dialect.Dialect;

/**
 <tt>big_integer</tt>: A type that maps an SQL NUMERIC to a
 <tt>java.math.BigInteger</tt>
 @see java.math.BigInteger
 @author Gavin King
 */
public class BigIntegerType extends ImmutableType implements DiscriminatorType {

  public String objectToSQLString(Object value, Dialect dialectthrows Exception {
    return value.toString();
  }

  public Object stringToObject(String xmlthrows Exception {
    return new BigInteger(xml);
  }

  public Object get(ResultSet rs, String name)
  throws HibernateException, SQLException {
    //return rs.getBigDecimal(name).toBigIntegerExact(); this 1.5 only. 
    BigDecimal bigDecimal = rs.getBigDecimal(name);
    return bigDecimal==null null 
      bigDecimal.setScale(0, BigDecimal.ROUND_UNNECESSARY).unscaledValue();
  }

  public void set(PreparedStatement st, Object value, int index)
  throws HibernateException, SQLException {
    st.setBigDecimalindex, new BigDecimal( (BigIntegervalue ) );
  }

  public int sqlType() {
    return Types.NUMERIC;
  }

  public String toString(Object valuethrows HibernateException {
    return value.toString();
  }

  public Class getReturnedClass() {
    return BigInteger.class;
  }

  public boolean isEqual(Object x, Object y) {
    return x==y || x!=null && y!=null && ( (BigInteger).compareTo( (BigInteger)==);
  }

  public int getHashCode(Object x, EntityMode entityMode) {
    return ( (BigInteger).intValue();
  }

  public String getName() {
    return "big_integer";
  }

  public Object fromStringValue(String xml) {
    return new BigInteger(xml);
  }


}