public class

BigIntegerType

extends AbstractSingleColumnStandardBasicType<T>
implements DiscriminatorType<T>
java.lang.Object
   ↳ org.hibernate.type.AbstractStandardBasicType<T>
     ↳ org.hibernate.type.AbstractSingleColumnStandardBasicType<T>
       ↳ org.hibernate.type.BigIntegerType

Class Overview

A type that maps between a NUMERIC and BigInteger.

Summary

Fields
public static final BigIntegerType INSTANCE
Public Constructors
BigIntegerType()
Public Methods
String getName()
Returns the abbreviated name of the type.
String objectToSQLString(BigInteger value, Dialect dialect)
BigInteger stringToObject(String string)
Convert the value from the mapping file to a Java object.
Protected Methods
boolean registerUnderJavaType()
[Expand]
Inherited Methods
From class org.hibernate.type.AbstractSingleColumnStandardBasicType
From class org.hibernate.type.AbstractStandardBasicType
From class java.lang.Object
From interface org.hibernate.type.BasicType
From interface org.hibernate.type.IdentifierType
From interface org.hibernate.type.LiteralType
From interface org.hibernate.type.SingleColumnType
From interface org.hibernate.type.StringRepresentableType
From interface org.hibernate.type.Type
From interface org.hibernate.type.XmlRepresentableType

Fields

public static final BigIntegerType INSTANCE

Public Constructors

public BigIntegerType ()

Public Methods

public String getName ()

Returns the abbreviated name of the type.

Returns
  • String the Hibernate type name

public String objectToSQLString (BigInteger value, Dialect dialect)

public BigInteger stringToObject (String string)

Convert the value from the mapping file to a Java object.

Parameters
string the value of discriminator-value or unsaved-value attribute
Returns
  • The converted value of the string representation.

Protected Methods

protected boolean registerUnderJavaType ()