Class Lucene40PostingsReader
- java.lang.Object
-
- org.apache.lucene.codecs.PostingsReaderBase
-
- org.apache.lucene.codecs.lucene40.Lucene40PostingsReader
-
- All Implemented Interfaces:
java.io.Closeable,java.lang.AutoCloseable
@Deprecated public class Lucene40PostingsReader extends PostingsReaderBase
Deprecated.Only for reading old 4.0 segmentsConcrete class that reads the 4.0 frq/prox postings format.- See Also:
Lucene40PostingsFormat
-
-
Constructor Summary
Constructors Constructor Description Lucene40PostingsReader(Directory dir, FieldInfos fieldInfos, SegmentInfo segmentInfo, IOContext ioContext, java.lang.String segmentSuffix)Deprecated.Sole constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidclose()Deprecated.voiddecodeTerm(long[] longs, DataInput in, FieldInfo fieldInfo, BlockTermState _termState, boolean absolute)Deprecated.Actually decode metadata for next termDocsEnumdocs(FieldInfo fieldInfo, BlockTermState termState, Bits liveDocs, DocsEnum reuse, int flags)Deprecated.Must fully consume state, since after this call that TermState may be reused.DocsAndPositionsEnumdocsAndPositions(FieldInfo fieldInfo, BlockTermState termState, Bits liveDocs, DocsAndPositionsEnum reuse, int flags)Deprecated.Must fully consume state, since after this call that TermState may be reused.voidinit(IndexInput termsIn)Deprecated.Performs any initialization, such as reading and verifying the header from the provided terms dictionaryIndexInput.BlockTermStatenewTermState()Deprecated.Return a newly created empty TermStatelongramBytesUsed()Deprecated.Returns approximate RAM bytes used
-
-
-
Constructor Detail
-
Lucene40PostingsReader
public Lucene40PostingsReader(Directory dir, FieldInfos fieldInfos, SegmentInfo segmentInfo, IOContext ioContext, java.lang.String segmentSuffix) throws java.io.IOException
Deprecated.Sole constructor.- Throws:
java.io.IOException
-
-
Method Detail
-
init
public void init(IndexInput termsIn) throws java.io.IOException
Deprecated.Description copied from class:PostingsReaderBasePerforms any initialization, such as reading and verifying the header from the provided terms dictionaryIndexInput.- Specified by:
initin classPostingsReaderBase- Throws:
java.io.IOException
-
newTermState
public BlockTermState newTermState()
Deprecated.Description copied from class:PostingsReaderBaseReturn a newly created empty TermState- Specified by:
newTermStatein classPostingsReaderBase
-
close
public void close() throws java.io.IOExceptionDeprecated.- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.io.Closeable- Specified by:
closein classPostingsReaderBase- Throws:
java.io.IOException
-
decodeTerm
public void decodeTerm(long[] longs, DataInput in, FieldInfo fieldInfo, BlockTermState _termState, boolean absolute) throws java.io.IOExceptionDeprecated.Description copied from class:PostingsReaderBaseActually decode metadata for next term- Specified by:
decodeTermin classPostingsReaderBase- Throws:
java.io.IOException- See Also:
PostingsWriterBase.encodeTerm(long[], org.apache.lucene.store.DataOutput, org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.BlockTermState, boolean)
-
docs
public DocsEnum docs(FieldInfo fieldInfo, BlockTermState termState, Bits liveDocs, DocsEnum reuse, int flags) throws java.io.IOException
Deprecated.Description copied from class:PostingsReaderBaseMust fully consume state, since after this call that TermState may be reused.- Specified by:
docsin classPostingsReaderBase- Throws:
java.io.IOException
-
docsAndPositions
public DocsAndPositionsEnum docsAndPositions(FieldInfo fieldInfo, BlockTermState termState, Bits liveDocs, DocsAndPositionsEnum reuse, int flags) throws java.io.IOException
Deprecated.Description copied from class:PostingsReaderBaseMust fully consume state, since after this call that TermState may be reused.- Specified by:
docsAndPositionsin classPostingsReaderBase- Throws:
java.io.IOException
-
ramBytesUsed
public long ramBytesUsed()
Deprecated.Description copied from class:PostingsReaderBaseReturns approximate RAM bytes used- Specified by:
ramBytesUsedin classPostingsReaderBase
-
-