Uses of Class
org.hibernate.type.ForeignKeyDirection

Packages that use ForeignKeyDirection
org.hibernate.event.def This package defines a default set of event listeners that implements the default behaviors of Hibernate. 
org.hibernate.mapping This package defines the Hibernate configuration-time metamodel. 
org.hibernate.type A Hibernate Type is a strategy for mapping a Java property type to a JDBC type or types. 
 

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 AssociationType.getForeignKeyDirection()
          Get the foreign key directionality of this association
 ForeignKeyDirection OneToOneType.getForeignKeyDirection()
           
 ForeignKeyDirection AnyType.getForeignKeyDirection()
           
 ForeignKeyDirection ManyToOneType.getForeignKeyDirection()
           
 ForeignKeyDirection CollectionType.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)
          Deprecated. see http://opensource.atlassian.com/projects/hibernate/browse/HHH-5138
 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.
static Object[] TypeFactory.replaceAssociations(Object[] original, Object[] target, Type[] types, SessionImplementor session, Object owner, Map copyCache, ForeignKeyDirection foreignKeyDirection)
          Deprecated. see http://opensource.atlassian.com/projects/hibernate/browse/HHH-5138
 

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)
           
 



Copyright © 2002-2011 Red Hat Middleware, LLC. All Rights Reserved