Uses of Class
org.hibernate.type.ForeignKeyDirection

Packages that use ForeignKeyDirection
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.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_TO_PARENT
          A foreign key from child to parent
static ForeignKeyDirection ForeignKeyDirection.FOREIGN_KEY_FROM_PARENT
          A foreign key from parent to child
 

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

Methods in org.hibernate.type with parameters of type ForeignKeyDirection
static EntityType TypeFactory.oneToOne(String persistentClass, ForeignKeyDirection foreignKeyType, String uniqueKeyPropertyName, boolean lazy, boolean isEmbeddedInXML, String entityName, String propertyName)
          A one-to-one association type for the given class
 

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