File tree Expand file tree Collapse file tree
src/main/java/io/weaviate/client6/v1/api/export Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -55,23 +55,23 @@ public Builder(String exportId) {
5555 this .exportId = exportId ;
5656 }
5757
58- /** Collection that should be included in the backup . */
58+ /** Collection that should be included in the export . */
5959 public Builder includeCollections (String ... includeCollections ) {
6060 return includeCollections (Arrays .asList (includeCollections ));
6161 }
6262
63- /** Collection that should be included in the backup . */
63+ /** Collection that should be included in the export . */
6464 public Builder includeCollections (List <String > includeCollections ) {
6565 this .includeCollections .addAll (includeCollections );
6666 return this ;
6767 }
6868
69- /** Collection that should be excluded from the backup . */
69+ /** Collection that should be excluded from the export . */
7070 public Builder excludeCollections (String ... excludeCollections ) {
7171 return excludeCollections (Arrays .asList (excludeCollections ));
7272 }
7373
74- /** Collection that should be excluded from the backup . */
74+ /** Collection that should be excluded from the export . */
7575 public Builder excludeCollections (List <String > excludeCollections ) {
7676 this .excludeCollections .addAll (excludeCollections );
7777 return this ;
You can’t perform that action at this time.
0 commit comments