Skip to content

Commit 7320be0

Browse files
committed
fixing javadoc
1 parent c890e09 commit 7320be0

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

astra-db-client/src/main/java/com/dtsx/astra/sdk/cassio/AnnQuery.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,9 @@ public class AnnQuery {
3737
*/
3838
private Map<String, String> metaData;
3939

40+
/**
41+
* Default constructor
42+
*/
43+
protected AnnQuery() {}
44+
4045
}

astra-db-client/src/main/java/com/dtsx/astra/sdk/cassio/ClusteredMetadataVectorRecord.java

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@
99
import java.util.Map;
1010
import java.util.UUID;
1111

12+
/**
13+
* Partitioned table with cluster and vector.
14+
*/
1215
@Data
1316
@AllArgsConstructor
14-
@NoArgsConstructor
1517
public class ClusteredMetadataVectorRecord {
1618

1719
/** Partition id. */
@@ -37,5 +39,10 @@ public class ClusteredMetadataVectorRecord {
3739
* Embeddings
3840
*/
3941
List<Float> vector;
42+
43+
/**
44+
* Default Constructor.
45+
*/
46+
public ClusteredMetadataVectorRecord() {}
4047

4148
}

astra-db-client/src/main/java/com/dtsx/astra/sdk/cassio/ClusteredRecord.java

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@
66

77
import java.util.UUID;
88

9+
/**
10+
* Default Constructor.
11+
*/
912
@Data
1013
@AllArgsConstructor
11-
@NoArgsConstructor
1214
public class ClusteredRecord {
1315

1416
/** Partition id. */
@@ -20,4 +22,9 @@ public class ClusteredRecord {
2022
/** Text body. */
2123
String body;
2224

25+
/**
26+
* Record for a clustered table.
27+
*/
28+
public ClusteredRecord() {}
29+
2330
}

0 commit comments

Comments
 (0)