Uses of Class
org.apache.lucene.codecs.TermVectorsWriter
-
Packages that use TermVectorsWriter Package Description org.apache.lucene.codecs Codecs API: API for customization of the encoding and structure of the index.org.apache.lucene.codecs.compressing StoredFieldsFormat that allows cross-document and cross-field compression of stored fields.org.apache.lucene.codecs.simpletext Simpletext Codec: writes human readable postings.org.apache.lucene.index Code to maintain and access indices. -
-
Uses of TermVectorsWriter in org.apache.lucene.codecs
Methods in org.apache.lucene.codecs that return TermVectorsWriter Modifier and Type Method Description abstract TermVectorsWriterTermVectorsFormat. vectorsWriter(Directory directory, SegmentInfo segmentInfo, IOContext context)Returns aTermVectorsWriterto write term vectors. -
Uses of TermVectorsWriter in org.apache.lucene.codecs.compressing
Subclasses of TermVectorsWriter in org.apache.lucene.codecs.compressing Modifier and Type Class Description classCompressingTermVectorsWriterMethods in org.apache.lucene.codecs.compressing that return TermVectorsWriter Modifier and Type Method Description TermVectorsWriterCompressingTermVectorsFormat. vectorsWriter(Directory directory, SegmentInfo segmentInfo, IOContext context) -
Uses of TermVectorsWriter in org.apache.lucene.codecs.simpletext
Subclasses of TermVectorsWriter in org.apache.lucene.codecs.simpletext Modifier and Type Class Description classSimpleTextTermVectorsWriterWrites plain-text term vectors.Methods in org.apache.lucene.codecs.simpletext that return TermVectorsWriter Modifier and Type Method Description TermVectorsWriterSimpleTextTermVectorsFormat. vectorsWriter(Directory directory, SegmentInfo segmentInfo, IOContext context) -
Uses of TermVectorsWriter in org.apache.lucene.index
Fields in org.apache.lucene.index declared as TermVectorsWriter Modifier and Type Field Description (package private) TermVectorsWriterTermVectorsConsumer. writerMethods in org.apache.lucene.index with parameters of type TermVectorsWriter Modifier and Type Method Description private static voidSortingTermVectorsConsumer. writeTermVectors(TermVectorsWriter writer, Fields vectors, FieldInfos fieldInfos)Safe (but, slowish) default method to copy every vector field in the providedTermVectorsWriter.
-