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 45ea9e0884
commit d6315632a6

View File

@@ -15,16 +15,14 @@ Imperative::
----
public interface IndexOperations {
void ensureIndex(IndexDefinition indexDefinition);
String ensureIndex(IndexDefinition indexDefinition);
void alterIndex(String name);
void alterIndex(String name, IndexOptions options);
void dropIndex(String name);
void dropAllIndexes();
void resetIndexCache();
List<IndexInfo> getIndexInfo();
}
----