public class IndexingSettings extends Object
Provides access to information about index settings.
Constructor and Description |
---|
IndexingSettings()
Initializes a new instance of the
IndexingSettings class. |
Modifier and Type | Method and Description |
---|---|
boolean |
getAutoDetectEncoding()
Gets or sets a value indicating that encoding is detected automatically.
|
DocumentFilter |
getDocumentFilter()
Gets or sets a document filter.
|
int |
getIndexType()
Gets or sets index type.
|
boolean |
getInMemoryIndex()
Gets a value indicating that index is stored in memory.
|
int |
getMaxIndexingReportCount()
Gets or sets the maximum count of indexing reports.
|
int |
getMaxSearchingReportCount()
Gets or sets the maximum count of searching reports.
|
int |
getSearchingThreads()
Gets or sets the number of threads used for searching.
|
TextStorageSettings |
getTextStorageSettings()
Gets or sets text storage settings.
|
boolean |
getUseCharacterReplacements()
Gets or sets a value indicating that the replacements must be used for all the characters extracted from indexed documents.
|
boolean |
getUseStopWords()
Gets or sets a value indicating that stop words are used in index.
|
void |
setAutoDetectEncoding(boolean value)
Gets or sets a value indicating that encoding is detected automatically.
|
void |
setDocumentFilter(DocumentFilter value)
Gets or sets a document filter.
|
void |
setIndexType(int value)
Gets or sets index type.
|
void |
setMaxIndexingReportCount(int value)
Gets or sets the maximum count of indexing reports.
|
void |
setMaxSearchingReportCount(int value)
Gets or sets the maximum count of searching reports.
|
void |
setSearchingThreads(int value)
Gets or sets the number of threads used for searching.
|
void |
setTextStorageSettings(TextStorageSettings value)
Gets or sets text storage settings.
|
void |
setUseCharacterReplacements(boolean value)
Gets or sets a value indicating that the replacements must be used for all the characters extracted from indexed documents.
|
void |
setUseStopWords(boolean value)
Gets or sets a value indicating that stop words are used in index.
|
public IndexingSettings()
Initializes a new instance of the IndexingSettings
class.
public final boolean getInMemoryIndex()
Gets a value indicating that index is stored in memory.
public final boolean getUseStopWords()
Gets or sets a value indicating that stop words are used in index.
public final void setUseStopWords(boolean value)
Gets or sets a value indicating that stop words are used in index.
public final int getMaxIndexingReportCount()
Gets or sets the maximum count of indexing reports.
public final void setMaxIndexingReportCount(int value)
Gets or sets the maximum count of indexing reports.
public final int getMaxSearchingReportCount()
Gets or sets the maximum count of searching reports.
public final void setMaxSearchingReportCount(int value)
Gets or sets the maximum count of searching reports.
public final boolean getUseCharacterReplacements()
Gets or sets a value indicating that the replacements must be used for all the characters extracted from indexed documents.
public final void setUseCharacterReplacements(boolean value)
Gets or sets a value indicating that the replacements must be used for all the characters extracted from indexed documents.
public final boolean getAutoDetectEncoding()
Gets or sets a value indicating that encoding is detected automatically.
public final void setAutoDetectEncoding(boolean value)
Gets or sets a value indicating that encoding is detected automatically.
public final DocumentFilter getDocumentFilter()
Gets or sets a document filter.
public final void setDocumentFilter(DocumentFilter value)
Gets or sets a document filter.
public final TextStorageSettings getTextStorageSettings()
Gets or sets text storage settings.
public final void setTextStorageSettings(TextStorageSettings value)
Gets or sets text storage settings.
public final int getIndexType()
Gets or sets index type.
public final void setIndexType(int value)
Gets or sets index type.
public final int getSearchingThreads()
Gets or sets the number of threads used for searching.
public final void setSearchingThreads(int value)
Gets or sets the number of threads used for searching.
Copyright © 2018. All rights reserved.