org.hibernate.annotations.GenerationTime Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-annotations
Show all versions of hibernate-annotations
Annotations metadata for Hibernate
//$Id: $
package org.hibernate.annotations;
/**
* When should the generation occurs
*
* @author Emmanuel Bernard
*/
public enum GenerationTime {
NEVER,
INSERT,
ALWAYS
}