Add IndexQuery.builder() method.

Original Pull Request: #3041
Closes #3030

Signed-off-by: Peter-Josef Meisch <pj.meisch@sothawo.com>
This commit is contained in:
Peter-Josef Meisch 2025-01-11 13:21:55 +01:00 committed by GitHub
parent 03591326d7
commit 5568c7bbc4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -54,6 +54,13 @@ public class IndexQuery {
this.indexName = indexName; this.indexName = indexName;
} }
/**
* @since 5.5
*/
public static IndexQueryBuilder builder() {
return new IndexQueryBuilder();
}
@Nullable @Nullable
public String getId() { public String getId() {
return id; return id;