1 package javax.persistence;2 3 public enum GeneratorType { 4 TABLE, 5 SEQUENCE, 6 IDENTITY, 7 AUTO, 8 NONE 9 }10