jakarta.persistence.OrderColumn
- Implemented Interfaces:
Annotation
- Target:
- Method, Field
The OrderColumn annotation is specified on a OneToMany or ManyToMany relationship or on an element collection. The OrderColumn annotation is specified on the side of the relationship that references the collection that is to be ordered. The order column is not visible as part of the state of the entity or embeddable class.
The OrderBy annotation should be used for ordering that is visible as persistent state and maintained by the application. The OrderBy annotation is not used when OrderColumn is specified.
The order column must be of integral type. The persistence provider maintains a contiguous (non-sparse) ordering of the values of the order column when updating the association or element collection. The order column value for the first element is 0.
Example:
@Entity public class CreditCard { @Id long ccNumber; @OneToMany // unidirectional @OrderColumn List transactionHistory; ... }
- See Also:
- Since:
- Jakarta Persistence (JPA) 2.0
Annotation Elements
String name_"; "ORDER".- Default:
- ""
- Since:
- Jakarta Persistence (JPA) 1.0
boolean nullable- Default:
- true
- Since:
- Jakarta Persistence (JPA) 1.0
boolean insertable- Default:
- true
- Since:
- Jakarta Persistence (JPA) 1.0
boolean updatable- Default:
- true
- Since:
- Jakarta Persistence (JPA) 1.0
String columnDefinition- Default:
- ""
- Since:
- Jakarta Persistence (JPA) 1.0
String optionsAdditional JDK methods inherited from java.lang.annotation.Annotation
annotationType(), equals(Object), hashCode(), toString()