Interface IPostingsFormatFactory
LUCENENET specific contract for extending the functionality of PostingsFormat implementations so they can be injected with dependencies.
To set the IPostingsFormatFactory, call SetPostingsFormatFactory(IPostingsFormatFactory).
Namespace: Lucene.Net.Codecs
Assembly: Lucene.Net.dll
Syntax
public interface IPostingsFormatFactory
Methods
| Improve this Doc View SourceGetPostingsFormat(String)
Gets the PostingsFormat instance from the provided name.
Declaration
PostingsFormat GetPostingsFormat(string name)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | name | The name of the PostingsFormat instance to retrieve. |
Returns
| Type | Description |
|---|---|
| PostingsFormat | The PostingsFormat instance. |