IndexInfo

Inheritance: java.lang.Object

public abstract class IndexInfo

Contains basic information on an Index .

Constructors

Constructor Description
IndexInfo()

Methods

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.

IndexInfo()

public IndexInfo()

getIndexId()

public abstract UUID getIndexId()

Gets the index unique identifier.

Returns: java.util.UUID - The index unique identifier.

getIndexFolder()

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.

getIndexStatus()

public abstract IndexStatus getIndexStatus()

Gets the index status.

Returns: IndexStatus - The index status.

getVersion()

public abstract String getVersion()

Gets the index version.

Returns: java.lang.String - The index version.

getSegmentCount()

public abstract int getSegmentCount()

Gets the number of index segments.

Returns: int - The number of index segments.

getTermCount()

public abstract int getTermCount()

Gets the number of words in the index.

Returns: int - The number of words in the index.