Apache Lucene.Net 2.1 Class Library API

TermVectorsWriter Class

Writer works by opening a document and then opening the fields within the document and then writing out the vectors for each field. Rough usage: for each document { writer.openDocument(); for each field on the document { writer.openField(field); for all of the terms { writer.addTerm(...) } writer.closeField } writer.closeDocument() }

For a list of all members of this type, see TermVectorsWriter Members.

System.Object
   Lucene.Net.Index.TermVectorsWriter

public sealed class TermVectorsWriter

Thread Safety

Public static (Shared in Visual Basic) members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.

Requirements

Namespace: Lucene.Net.Index

Assembly: Lucene.Net (in Lucene.Net.dll)

See Also

TermVectorsWriter Members | Lucene.Net.Index Namespace