public final class Lucene40PostingsWriter extends PostingsWriterBase
Lucene40PostingsFormat| Constructor and Description |
|---|
Lucene40PostingsWriter(SegmentWriteState state)
Creates a
Lucene40PostingsWriter, with the
DEFAULT_SKIP_INTERVAL. |
Lucene40PostingsWriter(SegmentWriteState state,
int skipInterval)
Creates a
Lucene40PostingsWriter, with the
specified skipInterval. |
| Modifier and Type | Method and Description |
|---|---|
void |
addPosition(int position,
BytesRef payload,
int startOffset,
int endOffset)
Add a new position & payload
|
void |
close() |
void |
finishDoc()
Called when we are done adding positions & payloads
for each doc.
|
void |
finishTerm(TermStats stats)
Called when we are done adding docs to this term
|
void |
flushTermsBlock(int start,
int count)
Flush count terms starting at start "backwards", as a
block.
|
void |
setField(FieldInfo fieldInfo)
Called when the writing switches to another field.
|
void |
start(IndexOutput termsOut)
Called once after startup, before any terms have been
added.
|
void |
startDoc(int docID,
int termDocFreq)
Adds a new doc in this term.
|
void |
startTerm()
Start a new term.
|
mergepublic Lucene40PostingsWriter(SegmentWriteState state) throws IOException
Lucene40PostingsWriter, with the
DEFAULT_SKIP_INTERVAL.IOExceptionpublic Lucene40PostingsWriter(SegmentWriteState state, int skipInterval) throws IOException
Lucene40PostingsWriter, with the
specified skipInterval.IOExceptionpublic void start(IndexOutput termsOut) throws IOException
PostingsWriterBasetermsOut.start in class PostingsWriterBaseIOExceptionpublic void startTerm()
PostingsWriterBasePostingsWriterBase.finishTerm(TermStats) is done, only if the term has at least one
document.startTerm in class PostingsWriterBasepublic void setField(FieldInfo fieldInfo)
PostingsWriterBasesetField in class PostingsWriterBasepublic void startDoc(int docID,
int termDocFreq)
throws IOException
PostingsConsumerfreq will be -1 when term frequencies are omitted
for the field.startDoc in class PostingsConsumerIOExceptionpublic void addPosition(int position,
BytesRef payload,
int startOffset,
int endOffset)
throws IOException
addPosition in class PostingsConsumerIOExceptionpublic void finishDoc()
PostingsConsumerfinishDoc in class PostingsConsumerpublic void finishTerm(TermStats stats) throws IOException
finishTerm in class PostingsWriterBaseIOExceptionpublic void flushTermsBlock(int start,
int count)
throws IOException
PostingsWriterBaseflushTermsBlock in class PostingsWriterBaseIOExceptionpublic void close()
throws IOException
close in interface Closeableclose in class PostingsWriterBaseIOExceptionCopyright © 2000-2012 Apache Software Foundation. All Rights Reserved.