站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > Hibernate 3.2.3 正式版 API 英文文档

Uses of Class org.hibernate.mapping.PropertyGeneration (Hibernate API Documentation) - Hibernate 3.2.3 正式版 API 英文文档


Uses of Class
org.hibernate.mapping.PropertyGeneration

Packages that use PropertyGeneration
org.hibernate.mapping This package defines the Hibernate configuration-time metamodel. 
 

Uses of PropertyGeneration in org.hibernate.mapping
 

Fields in org.hibernate.mapping declared as PropertyGeneration
static PropertyGeneration PropertyGeneration.NEVER
          Values for this property are never generated by the database.
static PropertyGeneration PropertyGeneration.INSERT
          Values for this property are generated by the database on insert.
static PropertyGeneration PropertyGeneration.ALWAYS
          Values for this property are generated by the database on both insert and update.
 

Methods in org.hibernate.mapping that return PropertyGeneration
static PropertyGeneration PropertyGeneration.parse(String name)
           
 PropertyGeneration Property.getGeneration()
           
 

Methods in org.hibernate.mapping with parameters of type PropertyGeneration
 void Property.setGeneration(PropertyGeneration generation)