|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.hibernate.type.AbstractType
public abstract class AbstractType
Abstract superclass of the built in Type hierarchy.
| Constructor Summary | |
|---|---|
AbstractType()
|
|
| Method Summary | |
|---|---|
Object |
assemble(Serializable cached,
SessionImplementor session,
Object owner)
Reconstruct the object from its cached "disassembled" state. |
void |
beforeAssemble(Serializable cached,
SessionImplementor session)
Called before assembling a query result set from the query cache, to allow batch fetching of entities missing from the second-level cache. |
int |
compare(Object x,
Object y,
EntityMode entityMode)
Perform a Comparator style comparison between values |
Serializable |
disassemble(Object value,
SessionImplementor session,
Object owner)
Return a cacheable "disassembled" representation of the object. |
int |
getHashCode(Object x,
EntityMode entityMode)
Get a hash code, consistent with persistence "equality". |
int |
getHashCode(Object x,
EntityMode entityMode,
SessionFactoryImplementor factory)
Get a hash code, consistent with persistence "equality". |
Type |
getSemiResolvedType(SessionFactoryImplementor factory)
Get the type of a semi-resolved value. |
Object |
hydrate(ResultSet rs,
String[] names,
SessionImplementor session,
Object owner)
Retrieve an instance of the mapped class, or the identifier of an entity or collection, from a JDBC resultset. |
boolean |
isAnyType()
Return true if the implementation is castable to AnyType. |
boolean |
isAssociationType()
Return true if the implementation is castable to AssociationType. |
boolean |
isCollectionType()
Return true if the implementation is castable to CollectionType. |
boolean |
isComponentType()
Return true if the implementation is castable to CompositeType. |
boolean |
isDirty(Object old,
Object current,
SessionImplementor session)
Should the parent be considered dirty, given both the old and current value? |
boolean |
isEntityType()
Return true if the implementation is castable to EntityType. |
boolean |
isEqual(Object x,
Object y,
EntityMode entityMode)
Compare two instances of the class mapped by this type for persistence "equality" (equality of persistent state). |
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 |
isModified(Object old,
Object current,
boolean[] checkable,
SessionImplementor session)
Has the value been modified compared to the current database state? The difference between this and the Type.isDirty(java.lang.Object, java.lang.Object, org.hibernate.engine.SessionImplementor) methods is that here we need to account for "partially" built values. |
boolean |
isSame(Object x,
Object y,
EntityMode entityMode)
Compare two instances of the class mapped by this type for persistence "equality" (equality of persistent state) taking a shortcut for entity references. |
boolean |
isXMLElement()
|
Object |
replace(Object original,
Object target,
SessionImplementor session,
Object owner,
Map copyCache,
ForeignKeyDirection foreignKeyDirection)
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. |
protected static void |
replaceNode(org.dom4j.Node container,
org.dom4j.Element value)
|
Object |
resolve(Object value,
SessionImplementor session,
Object owner)
Map identifiers to entities or collections. |
Object |
semiResolve(Object value,
SessionImplementor session,
Object owner)
Given a hydrated, but unresolved value, return a value that may be used to reconstruct property-ref associations. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface org.hibernate.type.Type |
|---|
deepCopy, fromXMLNode, getColumnSpan, getName, getReturnedClass, isDirty, isMutable, nullSafeGet, nullSafeGet, nullSafeSet, nullSafeSet, replace, setToXMLNode, sqlTypes, toColumnNullness, toLoggableString |
| Constructor Detail |
|---|
public AbstractType()
| Method Detail |
|---|
public boolean isAssociationType()
TypeAssociationType. This does not necessarily imply that
the type actually represents an association. Essentially a polymorphic version of
(type instanceof AssociationType.class)
isAssociationType in interface TypeAssociationType implementor; false otherwise.public boolean isCollectionType()
TypeCollectionType. Essentially a polymorphic version of
(type instanceof CollectionType.class)
A CollectionType is additionally an AssociationType; so if this method returns true,
Type.isAssociationType() should also return true.
isCollectionType in interface TypeCollectionType implementor; false otherwise.public boolean isComponentType()
TypeCompositeType. Essentially a polymorphic
version of (type instanceof CompositeType.class). A component type may own collections or
associations and hence must provide certain extra functionality.
isComponentType in interface TypeCompositeType implementor; false otherwise.public boolean isEntityType()
TypeEntityType. Essentially a polymorphic
version of (type instanceof EntityType.class).
An EntityType is additionally an AssociationType; so if this method returns true,
Type.isAssociationType() should also return true.
isEntityType in interface TypeEntityType implementor; false otherwise.public boolean isXMLElement()
isXMLElement in interface Type
public int compare(Object x,
Object y,
EntityMode entityMode)
TypeComparator style comparison between values
compare in interface Typex - The first valuey - The second valueentityMode - The entity mode of the values.
Comparator.compare(T, T) for a discussion.
public Serializable disassemble(Object value,
SessionImplementor session,
Object owner)
throws HibernateException
Type
disassemble in interface Typevalue - the value to cachesession - the sessionowner - optional parent entity object (needed for collections)
HibernateException
public Object assemble(Serializable cached,
SessionImplementor session,
Object owner)
throws HibernateException
Type
assemble in interface Typecached - the disassembled state from the cachesession - the sessionowner - the parent entity object
HibernateException
public boolean isDirty(Object old,
Object current,
SessionImplementor session)
throws HibernateException
Type
isDirty in interface Typeold - the old valuecurrent - the current valuesession - The session from which the request originated.
HibernateException - A problem occurred performing the checking
public Object hydrate(ResultSet rs,
String[] names,
SessionImplementor session,
Object owner)
throws HibernateException,
SQLException
Type
hydrate in interface Typenames - the column namessession - the sessionowner - the parent entity
HibernateException
SQLExceptionType.resolve(Object, SessionImplementor, Object)
public Object resolve(Object value,
SessionImplementor session,
Object owner)
throws HibernateException
Type
resolve in interface Typevalue - an identifier or value returned by hydrate()session - the sessionowner - the parent entity
HibernateExceptionType.hydrate(ResultSet, String[], SessionImplementor, Object)
public Object semiResolve(Object value,
SessionImplementor session,
Object owner)
throws HibernateException
Type
semiResolve in interface TypeHibernateExceptionpublic boolean isAnyType()
TypeAnyType. Essentially a polymorphic
version of (type instanceof AnyType.class).
An AnyType is additionally an AssociationType; so if this method returns true,
Type.isAssociationType() should also return true.
isAnyType in interface TypeAnyType implementor; false otherwise.
public boolean isModified(Object old,
Object current,
boolean[] checkable,
SessionImplementor session)
throws HibernateException
TypeType.isDirty(java.lang.Object, java.lang.Object, org.hibernate.engine.SessionImplementor) methods is that here we need to account for "partially" built values. This is really
only an issue with association types. For most type implementations it is enough to simply delegate to
Type.isDirty(java.lang.Object, java.lang.Object, org.hibernate.engine.SessionImplementor) here/
isModified in interface Typeold - the database state, in a "hydrated" form, with identifiers unresolvedcurrent - the current state of the objectcheckable - which columns are actually updatablesession - The session from which the request originated.
HibernateException - A problem occurred performing the checking
public boolean isSame(Object x,
Object y,
EntityMode entityMode)
throws HibernateException
Type#equals check on the values. For associations the implication
is a bit different. For most types it is conceivable to simply delegate to Type.isEqual(java.lang.Object, java.lang.Object, org.hibernate.EntityMode)
isSame in interface Typex - The first valuey - The second valueentityMode - The entity mode of the values.
HibernateException - A problem occurred performing the comparison
public boolean isEqual(Object x,
Object y,
EntityMode entityMode)
Type
isEqual in interface Typex - The first valuey - The second valueentityMode - The entity mode of the values.
public int getHashCode(Object x,
EntityMode entityMode)
Type#hashCode.
getHashCode in interface Typex - The value for which to retrieve a hash codeentityMode - The entity mode of the value.
public boolean isEqual(Object x,
Object y,
EntityMode entityMode,
SessionFactoryImplementor factory)
Type
isEqual in interface Typex - The first valuey - The second valueentityMode - The entity mode of the values.factory - The session factory
public int getHashCode(Object x,
EntityMode entityMode,
SessionFactoryImplementor factory)
Type#hashCode.
getHashCode in interface Typex - The value for which to retrieve a hash codeentityMode - The entity mode of the value.factory - The session factory
protected static void replaceNode(org.dom4j.Node container,
org.dom4j.Element value)
public Type getSemiResolvedType(SessionFactoryImplementor factory)
Type
getSemiResolvedType in interface Type
public Object replace(Object original,
Object target,
SessionImplementor session,
Object owner,
Map copyCache,
ForeignKeyDirection foreignKeyDirection)
throws HibernateException
Type
replace in interface Typeoriginal - the value from the detached entity being mergedtarget - the value in the managed entity
HibernateException
public void beforeAssemble(Serializable cached,
SessionImplementor session)
Type
beforeAssemble in interface Type
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||