Package org.hibernate.annotations
Annotation Interface Array
Specifies the maximum length of a SQL array type mapped by
the annotated attribute.
For example:
@Array(length=100)
// the maximum length of the SQL array@Column(length=64)
// the maximum length of the strings in the array String[] strings;
-
Required Element Summary
Required Elements
-
Element Details
-
length
int lengthThe maximum length of the array.
-