|
Annotation Types Summary |
| Column |
Specifies the mapped column for a persistent property or field. |
| Entity |
Specifies that the class is an entity. |
| GeneratedValue |
Provides for the specification of generation strategies for the
values of primary keys. |
| Id |
Specifies the primary key of an entity. |
| Index |
Used in schema generation to specify creation of an index. |
| SequenceGenerator |
Defines a primary key generator that may be referenced by name when
a generator element is specified for the GeneratedValue
annotation. |
| Table |
Specifies the primary table for the annotated entity. |
| TableGenerator |
Defines a primary key generator that may be
referenced by name when a generator element is specified for
the GeneratedValue annotation. |
| Transient |
Specifies that the property or field is not persistent. |
| UniqueConstraint |
Specifies that a unique constraint is to be included in
the generated DDL for a primary or secondary table. |