File tree Expand file tree Collapse file tree 1 file changed +1
-11
lines changed
objectbox-java-api/src/main/java/io/objectbox/annotation Expand file tree Collapse file tree 1 file changed +1
-11
lines changed Original file line number Diff line number Diff line change 26
26
/**
27
27
* Specifies that the property should be indexed, which is highly recommended if you do queries using this property.
28
28
*
29
- * To fine tune indexing you can specify {@link IndexType} and/or use {@link #maxValueLength()} if necessary.
29
+ * To fine tune indexing you can specify {@link IndexType} if necessary.
30
30
*/
31
31
@ Retention (RetentionPolicy .CLASS )
32
32
@ Target (ElementType .FIELD )
33
33
public @interface Index {
34
34
IndexType type () default IndexType .DEFAULT ;
35
-
36
- /**
37
- * Not implemented yet!!
38
- * Limit the length of index values (see {@link IndexType#VALUE}) for property types String and byte[].
39
- * This can save storage for long values if the differ in the beginning.
40
- * Valid values are in the range of 1-450.
41
- */
42
- @ Internal // Not really internal, but not yet implemented
43
- int maxValueLength () default 0 ;
44
-
45
35
}
You can’t perform that action at this time.
0 commit comments