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 TermVectorsWriter
TermVectorsFormat. vectorsWriter(Directory directory, SegmentInfo segmentInfo, IOContext context)
Returns aTermVectorsWriter
to 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 class
CompressingTermVectorsWriter
Methods in org.apache.lucene.codecs.compressing that return TermVectorsWriter Modifier and Type Method Description TermVectorsWriter
CompressingTermVectorsFormat. 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 class
SimpleTextTermVectorsWriter
Writes plain-text term vectors.Methods in org.apache.lucene.codecs.simpletext that return TermVectorsWriter Modifier and Type Method Description TermVectorsWriter
SimpleTextTermVectorsFormat. 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) TermVectorsWriter
TermVectorsConsumer. writer
Methods in org.apache.lucene.index with parameters of type TermVectorsWriter Modifier and Type Method Description private static void
SortingTermVectorsConsumer. writeTermVectors(TermVectorsWriter writer, Fields vectors, FieldInfos fieldInfos)
Safe (but, slowish) default method to copy every vector field in the providedTermVectorsWriter
.
-