Package org.apache.lucene.index
Class CheckIndex.Status.TermIndexStatus
- java.lang.Object
 - 
- org.apache.lucene.index.CheckIndex.Status.TermIndexStatus
 
 
- 
- Enclosing class:
 - CheckIndex.Status
 
public static final class CheckIndex.Status.TermIndexStatus extends java.lang.ObjectStatus from testing term index. 
- 
- 
Field Summary
Fields Modifier and Type Field Description java.util.Map<java.lang.String,BlockTreeTermsReader.Stats>blockTreeStatsHolds details of block allocations in the block tree terms dictionary (this is only set if thePostingsFormatfor this segment uses block tree.longdelTermCountNumber of terms with zero live docs docs.java.lang.ThrowableerrorException thrown during term index test (null on success)longtermCountNumber of terms with at least one live doc.longtotFreqTotal frequency across all terms.longtotPosTotal number of positions. 
 - 
 
- 
- 
Field Detail
- 
termCount
public long termCount
Number of terms with at least one live doc. 
- 
delTermCount
public long delTermCount
Number of terms with zero live docs docs. 
- 
totFreq
public long totFreq
Total frequency across all terms. 
- 
totPos
public long totPos
Total number of positions. 
- 
error
public java.lang.Throwable error
Exception thrown during term index test (null on success) 
- 
blockTreeStats
public java.util.Map<java.lang.String,BlockTreeTermsReader.Stats> blockTreeStats
Holds details of block allocations in the block tree terms dictionary (this is only set if thePostingsFormatfor this segment uses block tree. 
 - 
 
 -