Uses of Class
org.hibernate.type.ForeignKeyDirection

Packages that use ForeignKeyDirection
org.hibernate.event.def   
org.hibernate.mapping   
org.hibernate.type   
 

Uses of ForeignKeyDirection in org.hibernate.event.def
 

Methods in org.hibernate.event.def with parameters of type ForeignKeyDirection
protected  void DefaultMergeEventListener.copyValues(EntityPersister persister, Object entity, Object target, SessionImplementor source, Map copyCache, ForeignKeyDirection foreignKeyDirection)
           
 

Uses of ForeignKeyDirection in org.hibernate.mapping
 

Methods in org.hibernate.mapping that return ForeignKeyDirection
 ForeignKeyDirection OneToOne.getForeignKeyType()
          Returns the foreignKeyType.
 

Methods in org.hibernate.mapping with parameters of type ForeignKeyDirection
 void OneToOne.setForeignKeyType(ForeignKeyDirection foreignKeyType)
          Sets the foreignKeyType.
 

Uses of ForeignKeyDirection in org.hibernate.type
 

Fields in org.hibernate.type declared as ForeignKeyDirection
static ForeignKeyDirection ForeignKeyDirection.FOREIGN_KEY_FROM_PARENT
          A foreign key from parent to child
static ForeignKeyDirection ForeignKeyDirection.FOREIGN_KEY_TO_PARENT
          A foreign key from child to parent
 

Methods in org.hibernate.type that return ForeignKeyDirection
 ForeignKeyDirection AnyType.getForeignKeyDirection()
           
 ForeignKeyDirection AssociationType.getForeignKeyDirection()
          Get the foreign key directionality of this association
 ForeignKeyDirection CollectionType.getForeignKeyDirection()
           
 ForeignKeyDirection ManyToOneType.getForeignKeyDirection()
           
 ForeignKeyDirection OneToOneType.getForeignKeyDirection()
           
 

Methods in org.hibernate.type with parameters of type ForeignKeyDirection
static EntityType TypeFactory.oneToOne(String persistentClass, ForeignKeyDirection foreignKeyType, String uniqueKeyPropertyName, boolean lazy, boolean unwrapProxy, boolean isEmbeddedInXML, String entityName, String propertyName)
          A one-to-one association type for the given class
static Object[] TypeFactory.replace(Object[] original, Object[] target, Type[] types, SessionImplementor session, Object owner, Map copyCache, ForeignKeyDirection foreignKeyDirection)
           
 Object AbstractType.replace(Object original, Object target, SessionImplementor session, Object owner, Map copyCache, ForeignKeyDirection foreignKeyDirection)
           
 Object ComponentType.replace(Object original, Object target, SessionImplementor session, Object owner, Map copyCache, ForeignKeyDirection foreignKeyDirection)
           
 Object Type.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.
 

Constructors in org.hibernate.type with parameters of type ForeignKeyDirection
OneToOneType(String referencedEntityName, ForeignKeyDirection foreignKeyType, String uniqueKeyPropertyName, boolean lazy, boolean unwrapProxy, boolean isEmbeddedInXML, String entityName, String propertyName)
           
SpecialOneToOneType(String referencedEntityName, ForeignKeyDirection foreignKeyType, String uniqueKeyPropertyName, boolean lazy, boolean unwrapProxy, String entityName, String propertyName)