Class TermVectorsReader
Codec API for reading term vectors:
This is a Lucene.NET EXPERIMENTAL API, use at your own risk
Implements
System.IDisposable
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.Codecs
Assembly: Lucene.Net.dll
Syntax
public abstract class TermVectorsReader : IDisposable
Constructors
| Improve this Doc View SourceTermVectorsReader()
Sole constructor. (For invocation by subclass constructors, typically implicit.)
Declaration
protected TermVectorsReader()
Methods
| Improve this Doc View SourceCheckIntegrity()
Checks consistency of this reader.
Note that this may be costly in terms of I/O, e.g. may involve computing a checksum value against large data files.
This is a Lucene.NET INTERNAL API, use at your own risk
Declaration
public abstract void CheckIntegrity()
Clone()
Create a clone that one caller at a time may use to read term vectors.
Declaration
public abstract object Clone()
Returns
Type | Description |
---|---|
System.Object |
Dispose()
Disposes all resources used by this object.
Declaration
public void Dispose()
Dispose(Boolean)
Implementations must override and should dispose all resources used by this instance.
Declaration
protected abstract void Dispose(bool disposing)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | disposing |
Get(Int32)
Returns term vectors for this document, or null
if
term vectors were not indexed. If offsets are
available they are in an OffsetAttribute
available from the DocsAndPositionsEnum.
Declaration
public abstract Fields Get(int doc)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | doc |
Returns
Type | Description |
---|---|
Fields |
RamBytesUsed()
Returns approximate RAM bytes used.
Declaration
public abstract long RamBytesUsed()
Returns
Type | Description |
---|---|
System.Int64 |
Implements
System.IDisposable