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.Methods in org.hibernate.type with parameters of type ForeignKeyDirection Modifier and Type Method Description ObjectAbstractStandardBasicType. replace(Object original, Object target, SharedSessionContractImplementor session, Object owner, Map<Object,Object> copyCache, ForeignKeyDirection foreignKeyDirection)ObjectAbstractType. replace(Object original, Object target, SharedSessionContractImplementor session, Object owner, Map<Object,Object> copyCache, ForeignKeyDirection foreignKeyDirection)ObjectComponentType. replace(Object original, Object target, SharedSessionContractImplementor session, Object owner, Map<Object,Object> copyCache, ForeignKeyDirection foreignKeyDirection)ObjectSerializableToBlobType. replace(Object original, Object target, SharedSessionContractImplementor session, Object owner, Map<Object,Object> copyCache, ForeignKeyDirection foreignKeyDirection)@Nullable ObjectType. replace(@Nullable Object original, @Nullable Object target, SharedSessionContractImplementor session, Object owner, Map<Object,Object> 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[]TypeHelper. replace(Object[] original, Object[] target, Type[] types, SharedSessionContractImplementor session, Object owner, Map<Object,Object> copyCache, ForeignKeyDirection foreignKeyDirection)Apply theType.replace(java.lang.Object, java.lang.Object, org.hibernate.engine.spi.SharedSessionContractImplementor, java.lang.Object, java.util.Map<java.lang.Object, java.lang.Object>)operation across a series of values.ObjectUserComponentType. replace(Object original, Object target, SharedSessionContractImplementor session, Object owner, Map<Object,Object> copyCache, ForeignKeyDirection foreignKeyDirection)static Object[]TypeHelper. replaceAssociations(Object[] original, Object[] target, Type[] types, SharedSessionContractImplementor session, Object owner, Map<Object,Object> copyCache, ForeignKeyDirection foreignKeyDirection)Apply theType.replace(java.lang.Object, java.lang.Object, org.hibernate.engine.spi.SharedSessionContractImplementor, java.lang.Object, java.util.Map<java.lang.Object, java.lang.Object>)operation across a series of values, as long as the correspondingTypeis an association.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)
-