Java javax.persistence GenerationType fields, constructors, methods, implement or subclass

Example usage for Java javax.persistence GenerationType fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.persistence GenerationType.

The text is from its open source code.

Field

GenerationTypeTABLE
Indicates that the persistence provider must assign primary keys for the entity using an underlying database table to ensure uniqueness.
GenerationTypeSEQUENCE
Indicates that the persistence provider must assign primary keys for the entity using a database sequence.
GenerationTypeIDENTITY
Indicates that the persistence provider must assign primary keys for the entity using a database identity column.
GenerationTypeAUTO
Indicates that the persistence provider should pick an appropriate strategy for the particular database.

Method

StringtoString()
Returns a string representation of the object.