Interface IDocValuesFormatFactory
Contract for extending the functionality of DocValuesFormat implementations so they can be injected with dependencies.
To set the IDocValuesFormatFactory, call SetDocValuesFormatFactory(IDocValuesFormatFactory). See the Lucene.Net.Codecs namespace documentation for some common usage examples.Namespace: Lucene.Net.Codecs
Assembly: Lucene.Net.dll
Syntax
public interface IDocValuesFormatFactory
Methods
GetDocValuesFormat(string)
Gets the DocValuesFormat instance from the provided name
.
Declaration
DocValuesFormat GetDocValuesFormat(string name)
Parameters
Type | Name | Description |
---|---|---|
string | name | The name of the DocValuesFormat instance to retrieve. |
Returns
Type | Description |
---|---|
DocValuesFormat | The DocValuesFormat instance. |