1 package org.hibernate.cfg.annotations;2 3 /**4 * Are the columns forced to null, not null or not forced5 * @author Emmanuel Bernard6 */7 public enum Nullability {8 FORCED_NULL,9 FORCED_NOT_NULL,10 NO_CONSTRAINT11 }12