类 AbstractVisitor
- java.lang.Object
-
- org.hibernate.event.internal.AbstractVisitor
-
public abstract class AbstractVisitor extends Object
Abstract superclass of algorithms that walk a tree of property values of an entity, and perform specific functionality for collections, components and associated entities.- 作者:
- Gavin King
-
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 voidprocess(Object object, EntityPersister persister)Walk the tree starting from the given entity.voidprocessEntityPropertyValues(Object[] values, Type[] types)Dispatch each property value to processValue().
-
-
-
方法详细资料
-
processEntityPropertyValues
public void processEntityPropertyValues(Object[] values, Type[] types) throws HibernateException
Dispatch each property value to processValue().- 参数:
values-types-- 抛出:
HibernateException
-
process
public void process(Object object, EntityPersister persister) throws HibernateException
Walk the tree starting from the given entity.- 参数:
object-persister-- 抛出:
HibernateException
-
-