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
| Improve this Doc View SourceGetDocValuesFormat(String)
Gets the DocValuesFormat instance from the provided name
.
Declaration
DocValuesFormat GetDocValuesFormat(string name)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name of the DocValuesFormat instance to retrieve. |
Returns
Type | Description |
---|---|
DocValuesFormat | The DocValuesFormat instance. |