File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
objectbox-java-api/src/main/java/io/objectbox/annotation Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 59
59
/**
60
60
* The distance type used for the HNSW index. Changing this value causes re-indexing.
61
61
*/
62
- HnswDistanceType distanceType () default HnswDistanceType .DEFAULT ;
62
+ VectorDistanceType distanceType () default VectorDistanceType .DEFAULT ;
63
63
64
64
/**
65
65
* When repairing the graph after a node was removed, this gives the probability of adding backlinks to the repaired
Original file line number Diff line number Diff line change 17
17
package io .objectbox .annotation ;
18
18
19
19
/**
20
- * The distance algorithm used by an {@link HnswIndex} (vector search).
20
+ * The vector distance algorithm used by an {@link HnswIndex} (vector search).
21
21
*/
22
- public enum HnswDistanceType {
22
+ public enum VectorDistanceType {
23
23
24
24
/**
25
25
* The default; currently {@link #EUCLIDEAN}.
You can’t perform that action at this time.
0 commit comments