public class

PropertyGeneration

extends Object
implements Serializable
java.lang.Object
   ↳ org.hibernate.mapping.PropertyGeneration

Class Overview

Indicates whether given properties are generated by the database and, if so, at what time(s) they are generated.

Summary

Fields
public static final PropertyGeneration ALWAYS Values for this property are generated by the database on both insert and update.
public static final PropertyGeneration INSERT Values for this property are generated by the database on insert.
public static final PropertyGeneration NEVER Values for this property are never generated by the database.
Public Methods
String getName()
static PropertyGeneration parse(String name)
String toString()
[Expand]
Inherited Methods
From class java.lang.Object

Fields

public static final PropertyGeneration ALWAYS

Values for this property are generated by the database on both insert and update.

public static final PropertyGeneration INSERT

Values for this property are generated by the database on insert.

public static final PropertyGeneration NEVER

Values for this property are never generated by the database.

Public Methods

public String getName ()

public static PropertyGeneration parse (String name)

public String toString ()