Package org.apache.lucene.index
Class CheckIndex.Status.DocValuesStatus
- java.lang.Object
-
- org.apache.lucene.index.CheckIndex.Status.DocValuesStatus
-
- Enclosing class:
- CheckIndex.Status
public static final class CheckIndex.Status.DocValuesStatus extends java.lang.Object
Status from testing DocValues
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.Throwable
error
Exception thrown during doc values test (null on success)long
totalBinaryFields
Total number of binary fieldslong
totalNumericFields
Total number of numeric fieldslong
totalSortedFields
Total number of sorted fieldslong
totalSortedSetFields
Total number of sortedset fieldslong
totalValueFields
Total number of docValues tested.
-
-
-
Field Detail
-
totalValueFields
public long totalValueFields
Total number of docValues tested.
-
totalNumericFields
public long totalNumericFields
Total number of numeric fields
-
totalBinaryFields
public long totalBinaryFields
Total number of binary fields
-
totalSortedFields
public long totalSortedFields
Total number of sorted fields
-
totalSortedSetFields
public long totalSortedSetFields
Total number of sortedset fields
-
error
public java.lang.Throwable error
Exception thrown during doc values test (null on success)
-
-