类 PropertyGeneration
- java.lang.Object
-
- org.hibernate.mapping.PropertyGeneration
-
- 所有已实现的接口:
Serializable
@Deprecated public class PropertyGeneration extends Object implements Serializable
已过时。This is replaced byValueGenerationandGenerationTimingIndicates whether given properties are generated by the database and, if so, at what time(s) they are generated.- 作者:
- Steve Ebersole
- 另请参阅:
- 序列化表格
-
-
字段概要
字段 修饰符和类型 字段 说明 static PropertyGenerationALWAYS已过时。Values for this property are generated by the database on both insert and update.static PropertyGenerationINSERT已过时。Values for this property are generated by the database on insert.static PropertyGenerationNEVER已过时。Values for this property are never generated by the database.
-
-
-
字段详细资料
-
NEVER
public static final PropertyGeneration NEVER
已过时。Values for this property are never generated by the database.
-
INSERT
public static final PropertyGeneration INSERT
已过时。Values for this property are generated by the database on insert.
-
ALWAYS
public static final PropertyGeneration ALWAYS
已过时。Values for this property are generated by the database on both insert and update.
-
-