Class DocNameExtractor
Utility: extract doc names from an index
Inheritance
System.Object
DocNameExtractor
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Lucene.Net.Benchmarks.Quality.Utils
Assembly: Lucene.Net.Benchmark.dll
Syntax
public class DocNameExtractor
Constructors
| Improve this Doc View SourceDocNameExtractor(String)
Constructor for DocNameExtractor.
Declaration
public DocNameExtractor(string docNameField)
Parameters
Type | Name | Description |
---|---|---|
System.String | docNameField | name of the stored field containing the doc name. |
Methods
| Improve this Doc View SourceDocName(IndexSearcher, Int32)
Extract the name of the input doc from the index.
Declaration
public virtual string DocName(IndexSearcher searcher, int docid)
Parameters
Type | Name | Description |
---|---|---|
IndexSearcher | searcher | access to the index. |
System.Int32 | docid | ID of doc whose name is needed. |
Returns
Type | Description |
---|---|
System.String | the name of the input doc as extracted from the index. |
Exceptions
Type | Condition |
---|---|
System.IO.IOException | if cannot extract the doc name from the index. |