Uses of Class
org.hibernate.engine.Cascades.CascadeStyle

Packages that use Cascades.CascadeStyle
org.hibernate.engine This package contains classes that are "shared" by other packages, and implementations of some key algorithms. 
org.hibernate.mapping This package defines the Hibernate configuration-time metamodel. 
org.hibernate.persister.entity This package abstracts persistence mechanisms for entities, and defines the Hibernate runtime metamodel. 
org.hibernate.tuple This package defines a runtime metamodel for entities at the object level and abstracts the differences between the various entity modes. 
org.hibernate.type A Hibernate Type is a strategy for mapping a Java property type to a JDBC type or types. 
 

Uses of Cascades.CascadeStyle in org.hibernate.engine
 

Subclasses of Cascades.CascadeStyle in org.hibernate.engine
static class Cascades.MultipleCascadeStyle
           
 

Fields in org.hibernate.engine declared as Cascades.CascadeStyle
static Cascades.CascadeStyle Cascades.STYLE_ALL_DELETE_ORPHAN
          save / delete / update / evict / lock / replicate / merge / persist + delete orphans
static Cascades.CascadeStyle Cascades.STYLE_ALL
          save / delete / update / evict / lock / replicate / merge / persist
static Cascades.CascadeStyle Cascades.STYLE_SAVE_UPDATE
          save / update
static Cascades.CascadeStyle Cascades.STYLE_LOCK
          lock
static Cascades.CascadeStyle Cascades.STYLE_REFRESH
          refresh
static Cascades.CascadeStyle Cascades.STYLE_EVICT
          evict
static Cascades.CascadeStyle Cascades.STYLE_REPLICATE
          replicate
static Cascades.CascadeStyle Cascades.STYLE_MERGE
          merge
static Cascades.CascadeStyle Cascades.STYLE_PERSIST
          create
static Cascades.CascadeStyle Cascades.STYLE_DELETE
          delete
static Cascades.CascadeStyle Cascades.STYLE_DELETE_ORPHAN
          delete + delete orphans
static Cascades.CascadeStyle Cascades.STYLE_NONE
          no cascades
 

Methods in org.hibernate.engine that return Cascades.CascadeStyle
static Cascades.CascadeStyle Cascades.getCascadeStyle(String cascade)
           
 

Constructors in org.hibernate.engine with parameters of type Cascades.CascadeStyle
Cascades.MultipleCascadeStyle(Cascades.CascadeStyle[] styles)
           
 

Uses of Cascades.CascadeStyle in org.hibernate.mapping
 

Methods in org.hibernate.mapping that return Cascades.CascadeStyle
 Cascades.CascadeStyle Property.getCascadeStyle()
           
 

Uses of Cascades.CascadeStyle in org.hibernate.persister.entity
 

Methods in org.hibernate.persister.entity that return Cascades.CascadeStyle
 Cascades.CascadeStyle[] EntityPersister.getPropertyCascadeStyles()
          Get the cascade styles of the propertes (optional operation)
 Cascades.CascadeStyle[] BasicEntityPersister.getPropertyCascadeStyles()
           
 

Uses of Cascades.CascadeStyle in org.hibernate.tuple
 

Methods in org.hibernate.tuple that return Cascades.CascadeStyle
 Cascades.CascadeStyle StandardProperty.getCascadeStyle()
           
 Cascades.CascadeStyle[] EntityMetamodel.getCascadeStyles()
           
 

Methods in org.hibernate.tuple with parameters of type Cascades.CascadeStyle
 void StandardProperty.setCascadeStyle(Cascades.CascadeStyle cascadeStyle)
           
 

Constructors in org.hibernate.tuple with parameters of type Cascades.CascadeStyle
VersionProperty(String name, String node, Type type, boolean lazy, boolean insertable, boolean updateable, boolean nullable, boolean checkable, boolean versionable, Cascades.CascadeStyle cascadeStyle, Cascades.VersionValue unsavedValue)
          Constructs VersionProperty instances.
StandardProperty(String name, String node, Type type, boolean lazy, boolean insertable, boolean updateable, boolean nullable, boolean checkable, boolean versionable, Cascades.CascadeStyle cascadeStyle)
          Constructs StandardProperty instances.
 

Uses of Cascades.CascadeStyle in org.hibernate.type
 

Methods in org.hibernate.type that return Cascades.CascadeStyle
 Cascades.CascadeStyle CompositeCustomType.getCascadeStyle(int i)
           
 Cascades.CascadeStyle ComponentType.getCascadeStyle(int i)
           
 Cascades.CascadeStyle AnyType.getCascadeStyle(int i)
           
 Cascades.CascadeStyle AbstractComponentType.getCascadeStyle(int i)
           
 

Constructors in org.hibernate.type with parameters of type Cascades.CascadeStyle
EmbeddedComponentType(String[] propertyNames, Type[] propertyTypes, boolean[] nullabilities, FetchMode[] joinedFetch, Cascades.CascadeStyle[] cascade, boolean key, TuplizerLookup tuplizers)
           
ComponentType(String[] propertyNames, Type[] propertyTypes, boolean[] nullabilities, FetchMode[] joinedFetch, Cascades.CascadeStyle[] cascade, boolean key, TuplizerLookup tuplizers)