KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > cfg > annotations > Nullability


1 package org.hibernate.cfg.annotations;
2
3 /**
4  * Are the columns forced to null, not null or not forced
5  * @author Emmanuel Bernard
6  */

7 public enum Nullability {
8     FORCED_NULL,
9     FORCED_NOT_NULL,
10     NO_CONSTRAINT
11 }
12
Popular Tags