Update reference documentation for IndexOperations.

Make sure the reference documentation is in line with available methods. Update signatures and remove no longer supported ones.

Closes: #4587
This commit is contained in:
Christoph Strobl
2023-12-12 07:49:49 +01:00
parent b606387831
commit 3eb2696117

View File

@@ -2518,14 +2518,14 @@ The following listing shows the `IndexOperations` interface:
----
public interface IndexOperations {
void ensureIndex(IndexDefinition indexDefinition);
String ensureIndex(IndexDefinition indexDefinition);
void alterIndex(String name, IndexOptions options);
void dropIndex(String name);
void dropAllIndexes();
void resetIndexCache();
List<IndexInfo> getIndexInfo();
}
----