IndexInfo
Leave feedback
On this page
Inheritance: java.lang.Object
public abstract class IndexInfo
Contains basic information on an Index .
| Constructor | Description |
|---|---|
| IndexInfo() |
| Method | Description |
|---|---|
| getIndexId() | Gets the index unique identifier. |
| getIndexFolder() | Gets the full folder name where index is located. |
| getIndexStatus() | Gets the index status. |
| getVersion() | Gets the index version. |
| getSegmentCount() | Gets the number of index segments. |
| getTermCount() | Gets the number of words in the index. |
public IndexInfo()
public abstract UUID getIndexId()
Gets the index unique identifier.
Returns: java.util.UUID - The index unique identifier.
public abstract String getIndexFolder()
Gets the full folder name where index is located.
Returns: java.lang.String - The full folder name where index is located.
public abstract IndexStatus getIndexStatus()
Gets the index status.
Returns: IndexStatus - The index status.
public abstract String getVersion()
Gets the index version.
Returns: java.lang.String - The index version.
public abstract int getSegmentCount()
Gets the number of index segments.
Returns: int - The number of index segments.
public abstract int getTermCount()
Gets the number of words in the index.
Returns: int - The number of words in the index.
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.