KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > persistence > GeneratorType


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