Package oracle.nosql.driver.ops
Class GetIndexesResult
- java.lang.Object
 - 
- oracle.nosql.driver.ops.Result
 - 
- oracle.nosql.driver.ops.GetIndexesResult
 
 
 
- 
public class GetIndexesResult extends Result
Represents the result of aNoSQLHandle.getIndexes(oracle.nosql.driver.ops.GetIndexesRequest)operation.On a successful operation the index information is returned in an array of
GetIndexesResult.IndexInfo 
- 
- 
Nested Class Summary
Nested Classes Modifier and Type Class Description static classGetIndexesResult.IndexInfoIndexInfo represents the information about a single index including its name and field names. 
- 
Constructor Summary
Constructors Constructor Description GetIndexesResult() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GetIndexesResult.IndexInfo[]getIndexes()Returns the array of index information returned by the operation.StringtoString()- 
Methods inherited from class oracle.nosql.driver.ops.Result
getRateLimitDelayedMs, getRetryStats 
 - 
 
 - 
 
- 
- 
Method Detail
- 
getIndexes
public GetIndexesResult.IndexInfo[] getIndexes()
Returns the array of index information returned by the operation.- Returns:
 - the indexes information
 
 
 - 
 
 -