Module org.apache.lucene.codecs
Class SimpleTextTermVectorsWriter
java.lang.Object
org.apache.lucene.codecs.TermVectorsWriter
org.apache.lucene.codecs.simpletext.SimpleTextTermVectorsWriter
- All Implemented Interfaces:
Closeable,AutoCloseable,Accountable
Writes plain-text term vectors.
FOR RECREATIONAL USE ONLY
-
Field Summary
FieldsModifier and TypeFieldDescription(package private) static final BytesRef(package private) static final BytesRef(package private) static final BytesRef(package private) static final BytesRef(package private) static final BytesRef(package private) static final BytesRef(package private) static final BytesRef(package private) static final BytesRef(package private) static final BytesRefprivate int(package private) static final BytesRefprivate booleanprivate IndexOutput(package private) static final BytesRefprivate boolean(package private) static final BytesRefprivate booleanprivate final BytesRefBuilder(package private) static final BytesRef(package private) static final BytesRef(package private) static final BytesRef(package private) static final StringFields inherited from interface org.apache.lucene.util.Accountable
NULL_ACCOUNTABLE -
Constructor Summary
ConstructorsConstructorDescriptionSimpleTextTermVectorsWriter(Directory directory, String segment, IOContext context) -
Method Summary
Modifier and TypeMethodDescriptionvoidaddPosition(int position, int startOffset, int endOffset, BytesRef payload) Adds a term position and offsetsvoidclose()voidfinish(int numDocs) Called beforeTermVectorsWriter.close(), passing in the number of documents that were written.private voidnewLine()longReturn the memory usage of this object in bytes.voidstartDocument(int numVectorFields) Called before writing the term vectors of the document.voidstartField(FieldInfo info, int numTerms, boolean positions, boolean offsets, boolean payloads) Called before writing the terms of the field.voidAdds a term and its term frequencyfreq.private voidprivate voidMethods inherited from class org.apache.lucene.codecs.TermVectorsWriter
addAllDocVectors, addProx, finishDocument, finishField, finishTerm, mergeMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.lucene.util.Accountable
getChildResources
-
Field Details
-
END
-
DOC
-
NUMFIELDS
-
FIELD
-
FIELDNAME
-
FIELDPOSITIONS
-
FIELDOFFSETS
-
FIELDPAYLOADS
-
FIELDTERMCOUNT
-
TERMTEXT
-
TERMFREQ
-
POSITION
-
PAYLOAD
-
STARTOFFSET
-
ENDOFFSET
-
VECTORS_EXTENSION
- See Also:
-
out
-
numDocsWritten
private int numDocsWritten -
scratch
-
offsets
private boolean offsets -
positions
private boolean positions -
payloads
private boolean payloads
-
-
Constructor Details
-
SimpleTextTermVectorsWriter
public SimpleTextTermVectorsWriter(Directory directory, String segment, IOContext context) throws IOException - Throws:
IOException
-
-
Method Details
-
startDocument
Description copied from class:TermVectorsWriterCalled before writing the term vectors of the document.TermVectorsWriter.startField(FieldInfo, int, boolean, boolean, boolean)will be callednumVectorFieldstimes. Note that if term vectors are enabled, this is called even if the document has no vector fields, in this casenumVectorFieldswill be zero.- Specified by:
startDocumentin classTermVectorsWriter- Throws:
IOException
-
startField
public void startField(FieldInfo info, int numTerms, boolean positions, boolean offsets, boolean payloads) throws IOException Description copied from class:TermVectorsWriterCalled before writing the terms of the field.TermVectorsWriter.startTerm(BytesRef, int)will be callednumTermstimes.- Specified by:
startFieldin classTermVectorsWriter- Throws:
IOException
-
startTerm
Description copied from class:TermVectorsWriterAdds a term and its term frequencyfreq. If this field has positions and/or offsets enabled, thenTermVectorsWriter.addPosition(int, int, int, BytesRef)will be calledfreqtimes respectively.- Specified by:
startTermin classTermVectorsWriter- Throws:
IOException
-
addPosition
public void addPosition(int position, int startOffset, int endOffset, BytesRef payload) throws IOException Description copied from class:TermVectorsWriterAdds a term position and offsets- Specified by:
addPositionin classTermVectorsWriter- Throws:
IOException
-
finish
Description copied from class:TermVectorsWriterCalled beforeTermVectorsWriter.close(), passing in the number of documents that were written. Note that this is intentionally redundant (equivalent to the number of calls toTermVectorsWriter.startDocument(int), but a Codec should check that this is the case to detect the JRE bug described in LUCENE-1282.- Specified by:
finishin classTermVectorsWriter- Throws:
IOException
-
close
- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Specified by:
closein classTermVectorsWriter- Throws:
IOException
-
write
- Throws:
IOException
-
write
- Throws:
IOException
-
newLine
- Throws:
IOException
-
ramBytesUsed
public long ramBytesUsed()Description copied from interface:AccountableReturn the memory usage of this object in bytes. Negative values are illegal.
-