public abstract class CodecReader extends LeafReader implements Accountable
IndexReader.CacheHelper, IndexReader.CacheKey, IndexReader.ClosedListener| Modifier | Constructor and Description |
|---|---|
protected |
CodecReader()
Sole constructor.
|
| Modifier and Type | Method and Description |
|---|---|
void |
checkIntegrity()
Checks consistency of this reader.
|
protected void |
doClose()
Implements close.
|
void |
document(int docID,
StoredFieldVisitor visitor)
Expert: visits the fields of a stored document, for
custom processing/loading of each field.
|
BinaryDocValues |
getBinaryDocValues(java.lang.String field)
Returns
BinaryDocValues for this field, or
null if no binary doc values were indexed for
this field. |
java.util.Collection<Accountable> |
getChildResources()
Returns nested resources of this class.
|
abstract DocValuesProducer |
getDocValuesReader()
Expert: retrieve underlying DocValuesProducer
|
abstract StoredFieldsReader |
getFieldsReader()
Expert: retrieve thread-private StoredFieldsReader
|
abstract NormsProducer |
getNormsReader()
Expert: retrieve underlying NormsProducer
|
NumericDocValues |
getNormValues(java.lang.String field)
Returns
NumericDocValues representing norms
for this field, or null if no NumericDocValues
were indexed. |
NumericDocValues |
getNumericDocValues(java.lang.String field)
Returns
NumericDocValues for this field, or
null if no numeric doc values were indexed for
this field. |
abstract PointsReader |
getPointsReader()
Expert: retrieve underlying PointsReader
|
PointValues |
getPointValues(java.lang.String field)
Returns the
PointValues used for numeric or
spatial searches for the given field, or null if there
are no point fields. |
abstract FieldsProducer |
getPostingsReader()
Expert: retrieve underlying FieldsProducer
|
SortedDocValues |
getSortedDocValues(java.lang.String field)
Returns
SortedDocValues for this field, or
null if no SortedDocValues were indexed for
this field. |
SortedNumericDocValues |
getSortedNumericDocValues(java.lang.String field)
Returns
SortedNumericDocValues for this field, or
null if no SortedNumericDocValues were indexed for
this field. |
SortedSetDocValues |
getSortedSetDocValues(java.lang.String field)
Returns
SortedSetDocValues for this field, or
null if no SortedSetDocValues were indexed for
this field. |
Fields |
getTermVectors(int docID)
Retrieve term vectors for this document, or null if
term vectors were not indexed.
|
abstract TermVectorsReader |
getTermVectorsReader()
Expert: retrieve thread-private TermVectorsReader
|
long |
ramBytesUsed()
Return the memory usage of this object in bytes.
|
Terms |
terms(java.lang.String field)
Returns the
Terms index for this field, or null if it has none. |
docFreq, getContext, getCoreCacheHelper, getDocCount, getFieldInfos, getLiveDocs, getMetaData, getSumDocFreq, getSumTotalTermFreq, postings, postings, totalTermFreqclose, decRef, document, document, ensureOpen, equals, getReaderCacheHelper, getRefCount, getTermVector, hasDeletions, hashCode, incRef, leaves, maxDoc, numDeletedDocs, numDocs, registerParentReader, tryIncRefprotected CodecReader()
public abstract StoredFieldsReader getFieldsReader()
public abstract TermVectorsReader getTermVectorsReader()
public abstract NormsProducer getNormsReader()
public abstract DocValuesProducer getDocValuesReader()
public abstract FieldsProducer getPostingsReader()
public abstract PointsReader getPointsReader()
public final void document(int docID,
StoredFieldVisitor visitor)
throws java.io.IOException
IndexReaderIndexReader.document(int). If you want to load a subset, use
DocumentStoredFieldVisitor.document in class IndexReaderjava.io.IOExceptionpublic final Fields getTermVectors(int docID) throws java.io.IOException
IndexReadergetTermVectors in class IndexReaderjava.io.IOExceptionpublic final Terms terms(java.lang.String field) throws java.io.IOException
LeafReaderTerms index for this field, or null if it has none.terms in class LeafReaderjava.io.IOExceptionpublic final NumericDocValues getNumericDocValues(java.lang.String field) throws java.io.IOException
LeafReaderNumericDocValues for this field, or
null if no numeric doc values were indexed for
this field. The returned instance should only be
used by a single thread.getNumericDocValues in class LeafReaderjava.io.IOExceptionpublic final BinaryDocValues getBinaryDocValues(java.lang.String field) throws java.io.IOException
LeafReaderBinaryDocValues for this field, or
null if no binary doc values were indexed for
this field. The returned instance should only be
used by a single thread.getBinaryDocValues in class LeafReaderjava.io.IOExceptionpublic final SortedDocValues getSortedDocValues(java.lang.String field) throws java.io.IOException
LeafReaderSortedDocValues for this field, or
null if no SortedDocValues were indexed for
this field. The returned instance should only be
used by a single thread.getSortedDocValues in class LeafReaderjava.io.IOExceptionpublic final SortedNumericDocValues getSortedNumericDocValues(java.lang.String field) throws java.io.IOException
LeafReaderSortedNumericDocValues for this field, or
null if no SortedNumericDocValues were indexed for
this field. The returned instance should only be
used by a single thread.getSortedNumericDocValues in class LeafReaderjava.io.IOExceptionpublic final SortedSetDocValues getSortedSetDocValues(java.lang.String field) throws java.io.IOException
LeafReaderSortedSetDocValues for this field, or
null if no SortedSetDocValues were indexed for
this field. The returned instance should only be
used by a single thread.getSortedSetDocValues in class LeafReaderjava.io.IOExceptionpublic final NumericDocValues getNormValues(java.lang.String field) throws java.io.IOException
LeafReaderNumericDocValues representing norms
for this field, or null if no NumericDocValues
were indexed. The returned instance should only be
used by a single thread.getNormValues in class LeafReaderjava.io.IOExceptionpublic final PointValues getPointValues(java.lang.String field) throws java.io.IOException
LeafReaderPointValues used for numeric or
spatial searches for the given field, or null if there
are no point fields.getPointValues in class LeafReaderjava.io.IOExceptionprotected void doClose()
throws java.io.IOException
IndexReaderdoClose in class IndexReaderjava.io.IOExceptionpublic long ramBytesUsed()
AccountableramBytesUsed in interface Accountablepublic java.util.Collection<Accountable> getChildResources()
AccountablegetChildResources in interface AccountableAccountablespublic void checkIntegrity()
throws java.io.IOException
LeafReaderNote that this may be costly in terms of I/O, e.g. may involve computing a checksum value against large data files.
checkIntegrity in class LeafReaderjava.io.IOExceptionCopyright © 2000–2025 The Apache Software Foundation. All rights reserved.