We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d46bfb3 commit 6d0549bCopy full SHA for 6d0549b
hibernate-core/src/main/java/org/hibernate/annotations/ListIndexBase.java
@@ -6,6 +6,11 @@
6
*/
7
package org.hibernate.annotations;
8
9
+import java.lang.annotation.Retention;
10
+import java.lang.annotation.RetentionPolicy;
11
+
12
+import static java.lang.annotation.RetentionPolicy.RUNTIME;
13
14
/**
15
* Defines the start index value for a list index as stored on the database. This base is subtracted from the
16
* incoming database value on reads to determine the List position; it is added to the List position index when
@@ -19,6 +24,7 @@
19
24
*
20
25
* @author Steve Ebersole
21
26
27
+@Retention( RUNTIME )
22
28
public @interface ListIndexBase {
23
29
30
* The list index base. Default is 0.
0 commit comments