Package jakarta.persistence
Enum Class GenerationType
- All Implemented Interfaces:
Serializable
,Comparable<GenerationType>
,Constable
Enumerates the defined primary key generation strategies.
- Since:
- 1.0
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionIndicates that the persistence provider should pick an appropriate strategy for the particular database.Indicates that the persistence provider must assign primary keys for the entity using a database identity column.Indicates that the persistence provider must assign primary keys for the entity using a database sequence.Indicates that the persistence provider must assign primary keys for the entity using an underlying database table to ensure uniqueness.Indicates that the persistence provider must assign primary keys for the entity by generating an RFC 4122 Universally Unique IDentifier. -
Method Summary
Modifier and TypeMethodDescriptionstatic GenerationType
Returns the enum constant of this class with the specified name.static GenerationType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
TABLE
-
SEQUENCE
-
IDENTITY
-
UUID
-
AUTO
Indicates that the persistence provider should pick an appropriate strategy for the particular database.- For a primary key of type
UUID
orString
, this is equivalent toUUID
. - For a primary key of type
Long
,Integer
,long
, orint
, the provider selects betweenTABLE
,SEQUENCE
, andIDENTITY
.
The
AUTO
generation strategy may expect a database resource to exist, or it may attempt to create one. A vendor may provide documentation on how to create such resources in the event that it does not support schema generation or cannot create the schema resource at runtime. - For a primary key of type
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-