Operations: How to Get an Index

GetIndexOperation is used to retrieve an index definition from a database.

Syntax

public GetIndexOperation(String indexName)
Parameters
indexName String name of an index
Return Value
IndexDefinition Instance of IndexDefinition representing index.

Example

IndexDefinition index
    = store.maintenance()
        .send(new GetIndexOperation("Orders/Totals"));