org.hibernate.cfg.annotations.Nullability 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
package org.hibernate.cfg.annotations;
/**
* Are the columns forced to null, not null or not forced
*
* @author Emmanuel Bernard
*/
public enum Nullability {
FORCED_NULL,
FORCED_NOT_NULL,
NO_CONSTRAINT
}