|
Annotation Types Summary |
| AutoId |
A shortcut annotation equal to @GenertedValue(strategy=GenerationType.AUTO) |
| FKey |
Specifies the foreign key |
| FKey1 |
Specifies the foreign key |
| FKey2 |
Specifies the foreign key |
| FKey3 |
Specifies the foreign key |
| IdentityId |
A shortcut annotation equal to
@GenertedValue(strategy=GenerationType.IDENTITY) |
| PKey |
Specifies the primary key of an entity. |
| SingleFKey |
A shortcut annotation of FKey, only for one column |
| SingleIndex |
A shortcut annotation of Index, only for one column |
| SingleUnique |
A shortcut annotation of Unique, only for one column |
| TimeStampId |
A shortcut annotation equal to @GenertedValue(strategy=GenerationType.TIMESTAMP_ID) |
| UUID25 |
A shortcut annotation equal to @GenertedValue(strategy=GenerationType.UUID25) |
| UUID32 |
A shortcut annotation equal to @GenertedValue(strategy=GenerationType.UUID32) |
| UUID36 |
A shortcut annotation equal to @GenertedValue(strategy=GenerationType.UUID36) |
| UUIDAny |
Defines a primary key generator that may be referenced by name when
a generator element is specified for the GeneratedValue
annotation. |