public class SerializableToBlobType extends AbstractLobType implements ParameterizedType
Modifier and Type | Field and Description |
---|---|
static String |
CLASS_NAME
class name of the serialisable class
|
Constructor and Description |
---|
SerializableToBlobType() |
Modifier and Type | Method and Description |
---|---|
Object |
deepCopy(Object value,
EntityMode entityMode,
SessionFactoryImplementor factory)
Return a deep copy of the persistent state, stopping at entities and at
collections.
|
Object |
fromXMLNode(org.dom4j.Node xml,
Mapping factory)
Parse the XML representation of an instance.
|
Object |
get(ResultSet rs,
String name) |
int |
getHashCode(Object x,
EntityMode entityMode,
SessionFactoryImplementor session)
Get a hash code, consistent with persistence "equality".
|
Class |
getReturnedClass()
The class returned by
Type.nullSafeGet(java.sql.ResultSet, java.lang.String[], org.hibernate.engine.SessionImplementor, java.lang.Object) methods. |
boolean |
isEqual(Object x,
Object y,
EntityMode entityMode,
SessionFactoryImplementor factory)
Compare two instances of the class mapped by this type for persistence "equality" (equality of persistent
state).
|
boolean |
isMutable()
Are objects of this type mutable.
|
Object |
replace(Object original,
Object target,
SessionImplementor session,
Object owner,
Map copyCache)
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.
|
void |
set(PreparedStatement st,
Object value,
int index,
SessionImplementor session) |
void |
setParameterValues(Properties parameters)
Gets called by Hibernate to pass the configured type parameters to
the implementation.
|
void |
setToXMLNode(org.dom4j.Node node,
Object value,
SessionFactoryImplementor factory)
A representation of the value to be embedded in an XML element.
|
int[] |
sqlTypes(Mapping mapping)
Return the JDBC types codes (per
Types ) for the columns mapped by this type. |
boolean[] |
toColumnNullness(Object value,
Mapping mapping)
Given an instance of the type, return an array of boolean, indicating
which mapped columns would be null.
|
String |
toLoggableString(Object value,
SessionFactoryImplementor factory)
A representation of the value to be embedded in a log file.
|
getColumnSpan, getHashCode, getName, isDirty, isEqual, nullSafeGet, nullSafeGet, nullSafeSet, nullSafeSet
assemble, beforeAssemble, compare, disassemble, getSemiResolvedType, hydrate, isAnyType, isAssociationType, isCollectionType, isComponentType, isDirty, isEntityType, isModified, isSame, isXMLElement, replace, replaceNode, resolve, semiResolve
public static final String CLASS_NAME
public int[] sqlTypes(Mapping mapping) throws MappingException
Type
Types
) for the columns mapped by this type.sqlTypes
in interface Type
mapping
- The mapping object :/MappingException
- Generally indicates an issue accessing the passed mapping object.public Class getReturnedClass()
Type
Type.nullSafeGet(java.sql.ResultSet, java.lang.String[], org.hibernate.engine.SessionImplementor, java.lang.Object)
methods. This is used to establish the class of an array of
this type.getReturnedClass
in interface Type
public boolean isEqual(Object x, Object y, EntityMode entityMode, SessionFactoryImplementor factory)
Type
isEqual
in interface Type
isEqual
in class AbstractType
x
- The first valuey
- The second valueentityMode
- The entity mode of the values.factory
- The session factorypublic int getHashCode(Object x, EntityMode entityMode, SessionFactoryImplementor session)
Type
#hashCode
.getHashCode
in interface Type
getHashCode
in class AbstractType
x
- The value for which to retrieve a hash codeentityMode
- The entity mode of the value.session
- The session factorypublic Object get(ResultSet rs, String name) throws SQLException
get
in class AbstractLobType
SQLException
public void set(PreparedStatement st, Object value, int index, SessionImplementor session) throws SQLException
set
in class AbstractLobType
SQLException
public void setToXMLNode(org.dom4j.Node node, Object value, SessionFactoryImplementor factory) throws HibernateException
Type
setToXMLNode
in interface Type
HibernateException
public String toLoggableString(Object value, SessionFactoryImplementor factory) throws HibernateException
Type
toLoggableString
in interface Type
HibernateException
public Object fromXMLNode(org.dom4j.Node xml, Mapping factory) throws HibernateException
Type
fromXMLNode
in interface Type
HibernateException
public Object deepCopy(Object value, EntityMode entityMode, SessionFactoryImplementor factory) throws HibernateException
Type
deepCopy
in interface Type
value
- generally a collection element or entity fieldHibernateException
public boolean isMutable()
Type
public Object replace(Object original, Object target, SessionImplementor session, Object owner, Map copyCache) throws HibernateException
Type
replace
in interface Type
original
- the value from the detached entity being mergedtarget
- the value in the managed entityHibernateException
public boolean[] toColumnNullness(Object value, Mapping mapping)
Type
toColumnNullness
in interface Type
value
- an instance of the typepublic void setParameterValues(Properties parameters)
ParameterizedType
setParameterValues
in interface ParameterizedType
Copyright © 2002-2015 Red Hat Middleware, LLC. All Rights Reserved