Method ScanForDocValuesFormats
ScanForDocValuesFormats(IEnumerable<Assembly>)
Scans the given assemblies
for subclasses of Codec
and adds their names to the Lucene.Net.Codecs.DefaultDocValuesFormatFactory.docValuesFormatNameToTypeMap. Note that names will be
automatically overridden if the DocValuesFormat name appears multiple times - the last match wins.
Declaration
protected virtual void ScanForDocValuesFormats(IEnumerable<Assembly> assemblies)
Parameters
Type | Name | Description |
---|---|---|
IEnumerable<Assembly> | assemblies | A list of assemblies to scan. The assemblies will be scanned from first to last, and the last match for each DocValuesFormat name wins. |
ScanForDocValuesFormats(Assembly)
Scans the given assembly
for subclasses of DocValuesFormat
and adds their names to the Lucene.Net.Codecs.DefaultDocValuesFormatFactory.docValuesFormatNameToTypeMap. Note that names will be
automatically overridden if the DocValuesFormat name appears multiple times - the last match wins.
Declaration
protected virtual void ScanForDocValuesFormats(Assembly assembly)
Parameters
Type | Name | Description |
---|---|---|
Assembly | assembly | The assembly to scan. |