Java org.hibernate.usertype UserType fields, constructors, methods, implement or subclass

Example usage for Java org.hibernate.usertype UserType fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.hibernate.usertype UserType.

The text is from its open source code.

Implementation

org.hibernate.usertype.UserType has the following implementations.
Click this link to see all its implementation.

Method

Objectassemble(Serializable cached, Object owner)
Reconstruct an object from the cacheable representation.
ObjectdeepCopy(Object value)
Return a deep copy of the persistent state, stopping at entities and at collections.
Serializabledisassemble(Object value)
Transform the object into its cacheable representation.
booleanequals(Object x, Object y)
Compare two instances of the class mapped by this type for persistence "equality".
inthashCode(Object x)
Get a hashcode for the instance, consistent with persistence "equality"
booleanisMutable()
Are objects of this type mutable?
Objectreplace(Object original, Object target, Object owner)
During merge, replace the existing (target) value in the entity we are merging to with a new (original) value from the detached entity we are merging.
ClassreturnedClass()
The class returned by nullSafeGet().
int[]sqlTypes()
Return the SQL type codes for the columns mapped by this type.