Package org.hibernate.mapping
Class PropertyGeneration
- java.lang.Object
-
- org.hibernate.mapping.PropertyGeneration
-
- All Implemented Interfaces:
Serializable
@Deprecated @Remove public class PropertyGeneration extends Object implements Serializable
Deprecated.This is replaced byValueGeneration
andGenerationTiming
, and is no longer usedIndicates whether given properties are generated by the database and, if so, at what time(s) they are generated.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static PropertyGeneration
ALWAYS
Deprecated.Values for this property are generated by the database on both insert and update.static PropertyGeneration
INSERT
Deprecated.Values for this property are generated by the database on insert.static PropertyGeneration
NEVER
Deprecated.Values for this property are never generated by the database.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description String
getName()
Deprecated.static PropertyGeneration
parse(String name)
Deprecated.String
toString()
Deprecated.
-
-
-
Field Detail
-
NEVER
public static final PropertyGeneration NEVER
Deprecated.Values for this property are never generated by the database.
-
INSERT
public static final PropertyGeneration INSERT
Deprecated.Values for this property are generated by the database on insert.
-
ALWAYS
public static final PropertyGeneration ALWAYS
Deprecated.Values for this property are generated by the database on both insert and update.
-
-