AutoGeneratedKeyType Class
AutoGeneratedKeyType is an 'Enum' containing all of the valid states for an automatically generated key.
Item Index
Properties
- Identity static
- KeyGenerator static
- None static
Properties
Identity
AutoGeneratedKeyType
final
static
This entity's key is an Identity column and is set by the backend database. Keys for new entities will be temporary until the entities are saved at which point the keys will be converted to their 'real' versions.
KeyGenerator
AutoGeneratedKeyType
final
static
This entity's key is generated by a KeyGenerator and is set by the backend database. Keys for new entities will be temporary until the entities are saved at which point the keys will be converted to their 'real' versions.
None
AutoGeneratedKeyType
final
static
This entity does not have an autogenerated key. The client must set the key before adding the entity to the EntityManager