Uses of Class
org.hibernate.type.ForeignKeyDirection
-
Packages that use ForeignKeyDirection Package Description org.hibernate.boot.model.source.internal.hbm org.hibernate.boot.model.source.spi org.hibernate.event.internal This package defines a default set of event listeners that implement the default behaviors of Hibernate session operations.org.hibernate.mapping This package defines the Hibernate configuration-time mapping model.org.hibernate.type A HibernateType
is a strategy for mapping a Java property type to a JDBC type or types.org.hibernate.type.internal -
-
Uses of ForeignKeyDirection in org.hibernate.boot.model.source.internal.hbm
Methods in org.hibernate.boot.model.source.internal.hbm that return ForeignKeyDirection Modifier and Type Method Description ForeignKeyDirection
CompositeIdentifierSingularAttributeSourceManyToOneImpl. getForeignKeyDirection()
-
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 ForeignKeyDirection
SingularAttributeSourceToOne. getForeignKeyDirection()
-
Uses of ForeignKeyDirection in org.hibernate.event.internal
Methods in org.hibernate.event.internal with parameters of type ForeignKeyDirection Modifier and Type Method Description protected void
DefaultMergeEventListener. copyValues(EntityPersister persister, Object entity, Object target, SessionImplementor source, MergeContext copyCache, ForeignKeyDirection foreignKeyDirection)
-
Uses of ForeignKeyDirection in org.hibernate.mapping
Methods in org.hibernate.mapping that return ForeignKeyDirection Modifier and Type Method Description ForeignKeyDirection
OneToOne. getForeignKeyType()
Returns the foreignKeyType.Methods in org.hibernate.mapping with parameters of type ForeignKeyDirection Modifier and Type Method Description static OneToOneType
MappingHelper. oneToOne(String referencedEntityName, ForeignKeyDirection foreignKeyType, boolean referenceToPrimaryKey, String referencedPropertyName, boolean lazy, boolean unwrapProxy, String owningEntityName, String owningEntityPropertyName, boolean constrained, MetadataBuildingContext buildingContext)
void
OneToOne. setForeignKeyType(ForeignKeyDirection foreignKeyType)
Sets the foreignKeyType.static SpecialOneToOneType
MappingHelper. 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 ForeignKeyDirection
AnyType. getForeignKeyDirection()
ForeignKeyDirection
AssociationType. getForeignKeyDirection()
Get the foreign key directionality of this associationForeignKeyDirection
CollectionType. getForeignKeyDirection()
ForeignKeyDirection
ManyToOneType. getForeignKeyDirection()
ForeignKeyDirection
OneToOneType. getForeignKeyDirection()
static ForeignKeyDirection
ForeignKeyDirection. 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 Object
AbstractStandardBasicType. replace(Object original, Object target, SharedSessionContractImplementor session, Object owner, Map<Object,Object> copyCache, ForeignKeyDirection foreignKeyDirection)
Object
AbstractType. replace(Object original, Object target, SharedSessionContractImplementor session, Object owner, Map<Object,Object> copyCache, ForeignKeyDirection foreignKeyDirection)
Object
ComponentType. replace(Object original, Object target, SharedSessionContractImplementor session, Object owner, Map<Object,Object> copyCache, ForeignKeyDirection foreignKeyDirection)
Object
SerializableToBlobType. replace(Object original, Object target, SharedSessionContractImplementor session, Object owner, Map<Object,Object> copyCache, ForeignKeyDirection foreignKeyDirection)
@Nullable Object
Type. 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.Object
UserComponentType. 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 correspondingType
is 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)
-
Uses of ForeignKeyDirection in org.hibernate.type.internal
Methods in org.hibernate.type.internal with parameters of type ForeignKeyDirection Modifier and Type Method Description Object
ConvertedBasicTypeImpl. replace(Object original, Object target, SharedSessionContractImplementor session, Object owner, Map<Object,Object> copyCache, ForeignKeyDirection foreignKeyDirection)
-