Skip to content

Commit

Permalink
fixing javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
clun committed Jan 25, 2024
1 parent c890e09 commit 7320be0
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,9 @@ public class AnnQuery {
*/
private Map<String, String> metaData;

/**
* Default constructor
*/
protected AnnQuery() {}

}
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@
import java.util.Map;
import java.util.UUID;

/**
* Partitioned table with cluster and vector.
*/
@Data
@AllArgsConstructor
@NoArgsConstructor
public class ClusteredMetadataVectorRecord {

/** Partition id. */
Expand All @@ -37,5 +39,10 @@ public class ClusteredMetadataVectorRecord {
* Embeddings
*/
List<Float> vector;

/**
* Default Constructor.
*/
public ClusteredMetadataVectorRecord() {}

}
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@

import java.util.UUID;

/**
* Default Constructor.
*/
@Data
@AllArgsConstructor
@NoArgsConstructor
public class ClusteredRecord {

/** Partition id. */
Expand All @@ -20,4 +22,9 @@ public class ClusteredRecord {
/** Text body. */
String body;

/**
* Record for a clustered table.
*/
public ClusteredRecord() {}

}

0 comments on commit 7320be0

Please sign in to comment.