Uses of Class
org.hibernate.type.ForeignKeyDirection
-
Packages that use ForeignKeyDirection Package Description org.hibernate.boot.model.source.spi org.hibernate.mapping This package defines the Hibernate configuration-time mapping model.org.hibernate.type A HibernateTypeis a strategy for mapping a Java property type to a JDBC type or types. -
-
Uses of ForeignKeyDirection in org.hibernate.boot.model.source.spi
Methods in org.hibernate.boot.model.source.spi that return ForeignKeyDirection Modifier and Type Method Description ForeignKeyDirectionSingularAttributeSourceToOne. getForeignKeyDirection() -
Uses of ForeignKeyDirection in org.hibernate.mapping
Methods in org.hibernate.mapping that return ForeignKeyDirection Modifier and Type Method Description ForeignKeyDirectionOneToOne. getForeignKeyType()Returns the foreignKeyType.Methods in org.hibernate.mapping with parameters of type ForeignKeyDirection Modifier and Type Method Description static OneToOneTypeMappingHelper. oneToOne(String referencedEntityName, ForeignKeyDirection foreignKeyType, boolean referenceToPrimaryKey, String referencedPropertyName, boolean lazy, boolean unwrapProxy, String owningEntityName, String owningEntityPropertyName, boolean constrained, MetadataBuildingContext buildingContext)voidOneToOne. setForeignKeyType(ForeignKeyDirection foreignKeyType)Sets the foreignKeyType.static SpecialOneToOneTypeMappingHelper. specialOneToOne(String referencedEntityName, ForeignKeyDirection foreignKeyType, boolean referenceToPrimaryKey, String referencedPropertyName, boolean lazy, boolean unwrapProxy, String owningEntityName, String owningEntityPropertyName, boolean constrained, MetadataBuildingContext buildingContext) -
Uses of ForeignKeyDirection in org.hibernate.type
Methods in org.hibernate.type that return ForeignKeyDirection Modifier and Type Method Description ForeignKeyDirectionAnyType. getForeignKeyDirection()ForeignKeyDirectionAssociationType. getForeignKeyDirection()Get the foreign key directionality of this associationForeignKeyDirectionCollectionType. getForeignKeyDirection()ForeignKeyDirectionManyToOneType. getForeignKeyDirection()ForeignKeyDirectionOneToOneType. getForeignKeyDirection()static ForeignKeyDirectionForeignKeyDirection. valueOf(String name)Returns the enum constant of this type with the specified name.static ForeignKeyDirection[]ForeignKeyDirection. values()Returns an array containing the constants of this enum type, in the order they are declared.Constructors in org.hibernate.type with parameters of type ForeignKeyDirection Constructor Description OneToOneType(TypeConfiguration typeConfiguration, String referencedEntityName, ForeignKeyDirection foreignKeyType, boolean referenceToPrimaryKey, String uniqueKeyPropertyName, boolean lazy, boolean unwrapProxy, String entityName, String propertyName, boolean constrained)SpecialOneToOneType(TypeConfiguration typeConfiguration, String referencedEntityName, ForeignKeyDirection foreignKeyType, boolean referenceToPrimaryKey, String uniqueKeyPropertyName, boolean lazy, boolean unwrapProxy, String entityName, String propertyName, boolean constrained)
-