Package org.apache.lucene.index
Class CheckIndex.Options
- java.lang.Object
-
- org.apache.lucene.index.CheckIndex.Options
-
- Enclosing class:
- CheckIndex
public static class CheckIndex.Options extends java.lang.Object
Run-time configuration options for CheckIndex commands.
-
-
Field Summary
Fields Modifier and Type Field Description (package private) java.lang.String
dirImpl
(package private) boolean
doChecksumsOnly
(package private) boolean
doExorcise
(package private) boolean
doSlowChecks
(package private) java.lang.String
indexPath
(package private) java.util.List<java.lang.String>
onlySegments
(package private) java.io.PrintStream
out
(package private) int
threadCount
(package private) boolean
verbose
-
Constructor Summary
Constructors Constructor Description Options()
Sole constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getDirImpl()
Get the name of the FSDirectory implementation class to use.java.lang.String
getIndexPath()
Get the directory containing the index.void
setOut(java.io.PrintStream out)
Set the PrintStream to use for reporting results.
-
-
-
Field Detail
-
doExorcise
boolean doExorcise
-
doSlowChecks
boolean doSlowChecks
-
verbose
boolean verbose
-
doChecksumsOnly
boolean doChecksumsOnly
-
threadCount
int threadCount
-
onlySegments
java.util.List<java.lang.String> onlySegments
-
indexPath
java.lang.String indexPath
-
dirImpl
java.lang.String dirImpl
-
out
java.io.PrintStream out
-
-
Method Detail
-
getDirImpl
public java.lang.String getDirImpl()
Get the name of the FSDirectory implementation class to use.
-
getIndexPath
public java.lang.String getIndexPath()
Get the directory containing the index.
-
setOut
public void setOut(java.io.PrintStream out)
Set the PrintStream to use for reporting results.
-
-