Uses of Class
org.hibernate.annotations.OnDeleteAction
-
Packages that use OnDeleteAction Package Description org.hibernate.annotations A set of mapping annotations which extend the O/R mapping annotations defined by JPA.org.hibernate.boot.jaxb.mapping org.hibernate.boot.jaxb.mapping.marshall org.hibernate.boot.model.internal org.hibernate.mapping This package defines the Hibernate configuration-time mapping model. -
-
Uses of OnDeleteAction in org.hibernate.annotations
Methods in org.hibernate.annotations that return OnDeleteAction Modifier and Type Method Description OnDeleteAction
action()
The action to taken by the database when deletion of a row would cause the constraint to be violated.static OnDeleteAction
OnDeleteAction. fromExternalForm(Object value)
static OnDeleteAction
OnDeleteAction. valueOf(String name)
Returns the enum constant of this type with the specified name.static OnDeleteAction[]
OnDeleteAction. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of OnDeleteAction in org.hibernate.boot.jaxb.mapping
Fields in org.hibernate.boot.jaxb.mapping declared as OnDeleteAction Modifier and Type Field Description protected OnDeleteAction
JaxbManyToOne. onDelete
protected OnDeleteAction
JaxbOneToMany. onDelete
Methods in org.hibernate.boot.jaxb.mapping that return OnDeleteAction Modifier and Type Method Description OnDeleteAction
JaxbManyToOne. getOnDelete()
Gets the value of the onDelete property.OnDeleteAction
JaxbOneToMany. getOnDelete()
Gets the value of the onDelete property.OnDeleteAction
Adapter18. unmarshal(String value)
Methods in org.hibernate.boot.jaxb.mapping with parameters of type OnDeleteAction Modifier and Type Method Description String
Adapter18. marshal(OnDeleteAction value)
void
JaxbManyToOne. setOnDelete(OnDeleteAction value)
Sets the value of the onDelete property.void
JaxbOneToMany. setOnDelete(OnDeleteAction value)
Sets the value of the onDelete property. -
Uses of OnDeleteAction in org.hibernate.boot.jaxb.mapping.marshall
Methods in org.hibernate.boot.jaxb.mapping.marshall that return OnDeleteAction Modifier and Type Method Description static OnDeleteAction
OnDeleteActionMarshalling. fromXml(String name)
Methods in org.hibernate.boot.jaxb.mapping.marshall with parameters of type OnDeleteAction Modifier and Type Method Description static String
OnDeleteActionMarshalling. toXml(OnDeleteAction accessType)
-
Uses of OnDeleteAction in org.hibernate.boot.model.internal
Fields in org.hibernate.boot.model.internal declared as OnDeleteAction Modifier and Type Field Description protected OnDeleteAction
CollectionBinder. onDeleteAction
Methods in org.hibernate.boot.model.internal with parameters of type OnDeleteAction Modifier and Type Method Description static Any
BinderHelper. buildAnyValue(Column discriminatorColumn, Formula discriminatorFormula, AnnotatedJoinColumns keyColumns, PropertyData inferredData, OnDeleteAction onDeleteAction, boolean lazy, Nullability nullability, PropertyHolder propertyHolder, EntityBinder entityBinder, boolean optional, MetadataBuildingContext context)
void
CollectionBinder. setOnDeleteActionAction(OnDeleteAction onDeleteAction)
Constructors in org.hibernate.boot.model.internal with parameters of type OnDeleteAction Constructor Description OneToOneSecondPass(String mappedBy, String ownerEntity, PropertyHolder propertyHolder, PropertyData inferredData, String referencedEntityName, boolean annotatedEntity, NotFoundAction notFoundAction, OnDeleteAction onDeleteAction, boolean optional, String cascadeStrategy, AnnotatedJoinColumns columns, MetadataBuildingContext buildingContext)
-
Uses of OnDeleteAction in org.hibernate.mapping
Methods in org.hibernate.mapping that return OnDeleteAction Modifier and Type Method Description OnDeleteAction
ForeignKey. getOnDeleteAction()
OnDeleteAction
SimpleValue. getOnDeleteAction()
Methods in org.hibernate.mapping with parameters of type OnDeleteAction Modifier and Type Method Description void
ForeignKey. setOnDeleteAction(OnDeleteAction onDeleteAction)
void
SimpleValue. setOnDeleteAction(OnDeleteAction onDeleteAction)
-